参考代码:
#include <stdio.h>
int
main(void)
{
int letter = 0, number = 0, space = 0, other = 0;
char ch;
while( (ch = getchar()) != '\n'){ /*这里的‘\n’不能换成EOF,要不就把输入的换行符输入进来当成其他字符处理,
因此其他字符的数量将比题目所给的数量多一*/
if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z'))
letter += 1; //letter表示字母数量
else
if (ch == ' ')
space += 1; //空格数量
else
if (ch >= '0' && ch <= '9')
number += 1; //数字数量
else
other += 1; //其他字符数量
}
printf("%d %d %d %d", letter, number, space, other);
return 0;
}
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题11.11 (C语言代码)浏览:804 |
简单的a+b (C语言代码)浏览:685 |
简单的a+b (C语言代码)浏览:528 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:481 |
兰顿蚂蚁 (C++代码)浏览:1225 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:609 |
母牛的故事 (C语言代码)浏览:594 |
循环入门练习5 (C语言代码)浏览:907 |
C语言程序设计教程(第三版)课后习题12.3 (C语言代码)浏览:587 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:609 |