#include
int number(char c) {
int letter=0,number=0,kong=0,other=0;
while((c=getchar())!='\n'){
if((c>='a'&&c
else if(c>='0'&&c<='9') number++;
else if(c==' ') kong++;
else other++;
}
printf("%d %d %d %d",letter,number,kong,other);
return 0;
}
int main(){
char c;
c=getchar();
number(c);
}
是因为在int main部分上多写getchar(),就在number函数接受char c字符是总会是你从键盘输入的第一个字符类型减-1
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:350 |
循环入门练习5 (C语言代码)浏览:907 |
杨辉三角 (C语言代码)浏览:505 |
图形输出 (C语言代码)浏览:1019 |
C语言程序设计教程(第三版)课后习题9.2 (C语言代码)浏览:646 |
C语言程序设计教程(第三版)课后习题9.6 (C语言代码)浏览:611 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:395 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1207 |
众数问题 (C语言代码)浏览:659 |
整数分类 oj上总是wrong answer浏览:687 |