【项目5:有多少符号】
输入一行文字,以回车结束,统计并输出其中数字、空格、字母出现的次数,以及输入的字符总数。
[参考解答]
#include "stdio.h" int main() { int alpha=0, number=0, space=0, count=0; //分别代表字母、数字、空格个数,及总字节数 char ch; while ((ch=getchar())!='\n') { count++; if((ch>='a'&&ch<='z')||(ch>='A'&&ch<='Z')) alpha++; else if (ch>='0'&&ch<='9') number++; else if (ch==' ') space++; } printf("字母: %d, 数字: %d, 空格: %d\n", alpha, number, space); printf("总字节数: %d\n", count); return 0; }
时间: 2024-09-18 17:19:21