关于字符的输入输出。 20
#include<stdio.h>#include<stdlib.h>main(){chara,b,c;while(scanf("%c%c%c",&a,&b,&c)!=E...
#include<stdio.h>
#include<stdlib.h>
main()
{
char a,b,c;
while(scanf("%c%c%c",&a,&b,&c)!=EOF)
{
printf("%c%c%c\n",a,b,c);
}
system("pause");
return 0;
}
这个程序为什么每次输入相同的东西 输出的东西不一样。
例如
输入:qwe
输出:qwe
输入:qwe
输出:
qw
输入:qwe
输出:e
q
we
求解。。 展开
#include<stdlib.h>
main()
{
char a,b,c;
while(scanf("%c%c%c",&a,&b,&c)!=EOF)
{
printf("%c%c%c\n",a,b,c);
}
system("pause");
return 0;
}
这个程序为什么每次输入相同的东西 输出的东西不一样。
例如
输入:qwe
输出:qwe
输入:qwe
输出:
qw
输入:qwe
输出:e
q
we
求解。。 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询