各位XDM又卡了,心塞塞~~~
除了比大小的右边比较标准,其他的都没改,我是对照着ACSII表写的啊,不明白为啥会卡……
在DEVC++和在线运行中都是通过的,一提交它就错了。
得分50的代码:
#include<stdio.h> int main(void){ int word=0,num=0,nul=0,other=0; char c=0; while((c=getchar())!='\n'){ if(c>47&&c<58){ num += 1; } else if((c>64&&c<91)||(c>96&&c<122)){ word += 1; } else if(c==32){ nul += 1; } else{ other += 1; } } printf("%d %d %d %d",word,num,nul,other); return 0; }
正确通过的代码:
#include<stdio.h> int main(void){ int word=0,num=0,nul=0,other=0; char c=0; while((c=getchar())!='\n'){ if(c>='0'&&c<='9'){ num += 1; } else if((c>='A'&&c<='Z')||(c>='a'&&c<='z')){ word += 1; } else if(c==' '){ nul += 1; } else{ other += 1; } } printf("%d %d %d %d",word,num,nul,other); return 0; }
0.0分
0 人评分
WU-蓝桥杯算法提高VIP-企业奖金发放 (C++代码)浏览:1267 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:631 |
【金明的预算方案】 (C++代码)浏览:997 |
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:637 |
【明明的随机数】 (C语言代码)浏览:845 |
【蟠桃记】 (C语言代码)浏览:1084 |
C语言训练-自由落体问题 (C语言代码)浏览:650 |
程序员的表白 (C语言代码)浏览:678 |
数列排序 (C语言代码)浏览:674 |
字符删除 (C语言代码)浏览:767 |