这个程序读取用户输入的一行字符,并统计其中的英文字母、空格、数字和其他字符的个数。
#include <stdio.h>
#include <ctype.h>int main() {char ch;int letters = 0, spaces = 0, digits = 0, others = 0;printf("输入一行字符: ");// 逐字符读取输入,直到遇到换行符 '\n'while ((ch = getchar()) != '\n') {if (isalpha(ch))letters++;else if (isspace(ch))spaces++;else if (isdigit(ch))digits++;elseothers++;}printf("字母个数: %d\n", letters);printf("空格个数: %d\n", spaces);printf("数字个数: %d\n", digits);printf("其他字符个数: %d\n", others);return 0;
}
代码说明:
isalpha
函数用于判断字符是否是英文字母。isspace
函数用于判断字符是否是空格。isdigit
函数用于判断字符是否是数字。- 程序使用
getchar
函数逐字符读取输入,并根据字符类型计数。