解题思路:
字符数组用来作比较,数组用来计数。记得加判断
注意事项:
参考代码:
#include<iostream>
using namespace std;
#include<string>
int main()
{
string str="ABCDEFGHIGKLMNOPQRSTUVWXYZ";
string s;
int n;
int a[26];
for(int i=0;i<26;i++)
{
a[i]=0;
}
cin>>n;
while(n--)
{
cin>>s;
for(int i=0;i<s.length();i++)
{
for(int j=0;j<26;j++)
{
if(s[i]==str[j])
{
a[j]++;
}
}
}
for(int i=0;i<26;i++)
{
if(a[i]!=0)
{
if(a[i]==1)
{
cout<<str[i];
}
else
{
cout<<a[i]<<str[i];
}
}
}
cout<<endl;
for(int i=0;i<26;i++)
{
a[i]=0;
}
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.7 (C++代码)浏览:879 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:573 |
【出圈】 (C语言代码)浏览:590 |
字符串问题 (C语言代码)浏览:1634 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:690 |
C语言程序设计教程(第三版)课后习题6.3 (C++代码)浏览:1067 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:544 |
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:642 |
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:646 |
a+b浏览:452 |