参考代码:
#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二级辅导-等差数列 (C语言代码)浏览:1179 |
妹子杀手的故事 (C语言代码)浏览:616 |
C语言训练-列出最简真分数序列* (C语言代码)浏览:489 |
简单的a+b (C语言代码)浏览:503 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:1208 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:1056 |
wu-淘淘的名单 (C++代码)浏览:1280 |
母牛的故事 (C语言代码)浏览:1381 |
矩形面积交 (C++代码)浏览:1075 |
杨辉三角 (C语言代码)浏览:465 |