解题思路:
https://www.cnblogs.com/Alan-kx/p/14320284.html
读取空格终止导致for循环无法遍历全字符串问题
注意事项:
暂时不明
参考代码:
#include<iostream>
#include<string>
using namespace std;
void cnt_num(string);
int main()
{
string str1;
getline(cin,str1);
cnt_num(str1);
return 0;
}
void cnt_num(string str1)
{
int num_letter=0,num_num=0,num_space=0,num_other=0;
for(int i = 0;i<str1.size();i++)
{
if ((str1[i]>='a' and str1[i]<='z') or (str1[i]>='A' and str1[i]<='Z')) num_letter++;
else if (str1[i]>='0' and str1[i]<='9') num_num++;
else if (str1[i]==' ') num_space++;
else num_other++;
}
cout<<num_letter<<' '<<num_num<<' '<<num_space<<' '<<num_other<<endl;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:666 |
C语言程序设计教程(第三版)课后习题6.9 (C++代码)论pow函数的应用浏览:1079 |
逆反的01串 (C++代码)(依旧推荐switch)浏览:1003 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:729 |
C语言训练-大、小写问题 (C语言代码)浏览:792 |
WU-复数求和 (C++代码)浏览:2119 |
简单的a+b (C语言代码)浏览:542 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:856 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:527 |
C二级辅导-等差数列 (C语言代码)浏览:831 |