解题思路:
注意事项:
参考代码:
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str;
getline(cin,str);
int size = str.length();
char *p = &str[0];
int ans_buffers = 0 , ans_space = 0, ans_nums= 0, ans_others = 0;
while(*p != '\0')
{
if((*p >= 'a' && *p <= 'z') || (*p >= 'A' && *p <= 'Z'))
{
ans_buffers++;
}
else if(*p == ' ')
{
ans_space++;
}
else if(*p >= '0' && *p <= '9')
{
ans_nums++;
}
else
ans_others++;
p++;
}
cout << ans_buffers << " " << ans_nums << " " << ans_space << " " << ans_others;
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:631 |
C语言程序设计教程(第三版)课后习题6.11 (C语言代码)浏览:565 |
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:1368 |
校门外的树 (C语言代码)浏览:733 |
【矩阵】 (C++代码)浏览:999 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)from DQM浏览:773 |
蚂蚁感冒 (C语言代码)浏览:1408 |
杨辉三角 (C语言代码)浏览:734 |
母牛的故事 (C语言代码)浏览:495 |
发工资咯 (C语言代码)浏览:815 |