标签:ret iostream ring name length des btn i++ amp
案例可能有多组,每个案例输入为一行字符串。
对每个案例按A-Z的顺序输出其中大写字母出现的次数。
A:0 B:0 C:0 D:3 E:2 F:5 G:0 H:0 I:1 J:4 K:2 L:3 M:0 N:1 O:0 P:0 Q:1 R:0 S:2 T:0 U:0 V:0 W:1 X:0 Y:0 Z:0
#include<iostream> #include<string> using namespace std; int main() { string str; int a[26] = {0}; int j; while(cin>>str) { for(int i=0;i<str.length();i++) { if(str[i]>=‘A‘&&str[i]<=‘Z‘){ j = str[i]-‘A‘;//对每个字符个数求解 a[j]++; } } for(int i=0;i<26;i++) { printf("%c:%d\n",‘A‘+i,a[i]);//已知ASCII码值,输出对应字符 } } return 0; }
/*
运行时间:4ms
占用内存:604k
*/
标签:ret iostream ring name length des btn i++ amp
原文地址:https://www.cnblogs.com/ttzz/p/10349204.html