参考代码:
#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分
1 人评分
【明明的随机数】 (C语言代码)浏览:616 |
Hello, world! (C语言代码)浏览:878 |
程序员的表白 (C语言代码)浏览:543 |
用筛法求之N内的素数。 (C语言代码)浏览:626 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:882 |
a+b浏览:418 |
Tom数 (C语言代码)浏览:695 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:641 |
敲七 (C++代码)浏览:881 |
简单的a+b (C语言代码)浏览:554 |