存疑580E(已解决)getchar
作者:互联网
题目http://codeup.cn/problem.php?cid=100000580&pid=4
scanf("%s\n%c", s, &c) != EOF 这种方法的问题是scanf能识别空格,所以不对。
本题问题出在末尾getchar();但是devc++没有问题啊
#include<stdio.h>
#include<string.h>
int main(){
char s[110],c;
while(gets(s)!=NULL){
c=getchar();
int i;
for(i=0;s[i];i++){
if(s[i]==c);else printf("%c",s[i]);
}
printf("\n");
getchar();
}
return 0;
}
标签:include,cn,int,scanf,580E,printf,存疑,getchar 来源: https://blog.csdn.net/weixin_45547419/article/details/113921486