菜蛙


私信TA

用户名:hu2022

访问量:16333

签 名:

明日复明日,明日何其多。我生待明日,万事成蹉跎。

等  级
排  名 546
经  验 4391
参赛次数 0
文章发表 75
年  龄 0
在职情况 学生
学  校 哈工程
专  业

  自我简介:

各位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 人评分

  评论区

  • «
  • »