解题思路:
分四个变量统计就行
注意事项:
为什么回车不算字符
为什么回车不算字符
为什么回车不算字符
参考代码:
#include <stdio.h> int main() { char ch; int letter = 0; int number = 0; int space = 0; int other = 0; while (scanf("%c", &ch)!=EOF && ch != '\n') { if (ch == ' ') space++; else if (ch <= '9' && ch >= '0') number++; else if ((ch <= 'z' && ch >= 'a') || (ch <= 'Z' && ch >= 'A')) letter++; else other++; } printf("%d %d %d %d\n", letter, number, space, other); return 0; }
0.0分
7 人评分
C语言训练-求1+2!+3!+...+N!的和 (C语言代码)万恶的long long浏览:904 |
Wu-求圆的面积 (C++代码)浏览:1991 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:599 |
printf基础练习2 (C语言代码)浏览:649 |
Tom数 (C语言代码)浏览:755 |
1048题解(读入回车问题)浏览:627 |
剪刀石头布 (C++代码)浏览:1808 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:612 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:652 |
模拟计算器 (C语言代码)浏览:2358 |
ET 2019-03-29 15:58:02 |
C++兼容C