C语言找错1
#include<stdio.h>main(){charcx,found='\0';while((cx=getchar())!=EOF);{if(cx!='')putch...
#include<stdio.h>
main()
{char cx,found='\0';
while((cx=getchar())!=EOF);
{if(cx!='') putchar(cx);
if(cx=='')
if(found!=='')putchar(cx);
found=cx;
}
} 展开
main()
{char cx,found='\0';
while((cx=getchar())!=EOF);
{if(cx!='') putchar(cx);
if(cx=='')
if(found!=='')putchar(cx);
found=cx;
}
} 展开
2个回答
展开全部
while((cx=getchar())!=EOF); //多了;号
if(cx=='')
if(found!=='')putchar(cx);
改成:
if(cx=='')
{
if(found!=='')/* !== 你见过这样的关系表达式? */putchar(cx);
}
//可以运行
#include<stdio.h>
main()
{
char cx,found='\0';
while((cx=getchar())!=EOF)
{
if(cx!='') putchar(cx);
if(cx=='')
{
if(found!='')
putchar(cx);
}
found=cx;
}
}
if(cx=='')
if(found!=='')putchar(cx);
改成:
if(cx=='')
{
if(found!=='')/* !== 你见过这样的关系表达式? */putchar(cx);
}
//可以运行
#include<stdio.h>
main()
{
char cx,found='\0';
while((cx=getchar())!=EOF)
{
if(cx!='') putchar(cx);
if(cx=='')
{
if(found!='')
putchar(cx);
}
found=cx;
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询