参考代码:
#include <iostream> #include <string> #include <cctype> using std::cin; using std::cout; using std::endl; using std::string; void differCharacter(const string& str); int main(void) { string str; getline(cin, str); //整行输入,包含空格 differCharacter(str); return 0; } void differCharacter(const string& str) { unsigned int alpha=0, digit=0, space=0, other=0; for (unsigned int i=0; i<str.length(); i++) { if ( isalpha(str.at(i)) ) { alpha++; } else if ( isdigit(str.at(i)) ) { digit++; } else if ( isspace(str.at(i)) ) { space++; } else { other++; } } cout << alpha << " " << digit << " " << space << " " << other << endl; }
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:654 |
C语言训练-计算一个整数N的阶乘 (C语言代码)浏览:986 |
最小公倍数 (C语言代码)浏览:898 |
最长单词 (C语言代码)浏览:1498 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:639 |
WU-输出九九乘法表 (C++代码)浏览:1855 |
WU-链表数据求和操作 (C++代码)浏览:1385 |
简单的a+b (C语言代码)浏览:881 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:468 |
最小公倍数 (C语言代码)浏览:1114 |