写一个程序统计输入字符串中:

各个数字、空白字符、以及其他所有字符出现的次数。

#include
#include
#include
//isspace(),isdigit()int main(){ int space = 0; int other = 0; int arr[10] = { 0 }; int ch = 0; int i = 0; while ((ch = getchar()) != EOF) { if (isspace(ch)) { space++; } else if (isdigit(ch)) { arr[ch - '0']++; } else other++; } printf("space:%d\n", space); printf("other:%d\n", other); for (i = 0; i < 10; i++) { printf("%d:%d\n", i, arr[i]); } system("pause"); return 0;}