参考代码:
#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语言代码)浏览:582 |
A+B for Input-Output Practice (C++代码)浏览:599 |
校门外的树 (C语言代码)浏览:950 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:802 |
用筛法求之N内的素数。 (C语言代码)浏览:650 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:1443 |
Tom数 (C语言代码)浏览:718 |
生日日数 (C语言代码)浏览:1434 |
母牛的故事 (C语言代码)浏览:446 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:671 |