题目不算很难
耐心点慢慢写完就行了
参考代码:
#include<iostream> #include<cstring> #include<cctype> #include<algorithm> using namespace std; struct ST { string str; int num; }a[105];//定义结构体中含有字符串和该字符串出现的次数。 int main() { //freopen("data.in.txt","r",stdin); //freopen("data.out.txt","w",stdout); string str; int k=0;//表示存放的单词的个数 while(cin>>str) { string str1=""; for(int i=0;i<str.length();i++) { if(isalpha(str[i]))//如果是字母的话 str1+=str[i]; } int flag=0; for(int i=0;i<=k;i++) { transform(str1.begin(), str1.end(), str1.begin(), ::toupper);//把str1字符串转化位为大写字符串 transform(a[i].str.begin(),a[i].str.end(), a[i].str.begin(), ::toupper);//同上 if(str1==a[i].str)//如果在数组a中找到了相同的字符串 { a[i].num++;//该字符串数量加l flag=1;//flag标志置位 } } if(flag==0)//没找到 { a[k].str=str1;//将该字符串放入a数组 a[k++].num=1; } } int max=-9999; for(int i=0;i<k;i++) { if((int)a[i].str.length()>max) max=a[i].str.length();//找到最长的那个字符串的长度 } for(int i=0;i<k;i++) { for(int j=0;j<max-a[i].str.length();j++) { cout<<" "; }//先输出空格 cout<<a[i].str; //再输出字符串 cout<<":"; for(int j=0;j<a[i].num;j++) { cout<<"*"; } cout<<a[i].num<<endl; } return 0; }
0.0分
8 人评分
C二级辅导-公约公倍 (C语言代码)浏览:1549 |
【回文数(二)】 (C语言代码)浏览:800 |
【绝对值排序】 (C++代码)浏览:720 |
小明A+B (C语言代码)浏览:1316 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:660 |
数组与指针的问题浏览:760 |
字符逆序 (C语言代码)浏览:541 |
小O的乘积 (C++代码)浏览:796 |
幸运数 (C++代码)浏览:2982 |
Manchester- 求之N内的素数浏览:1510 |