计算机二级程序
19 查阅
#include <stdio.h>
int main()
{
int n=0;
while((getchar()!='\r')||(getchar()!='\n')) n++;
printf("%d",n);
return 0;
}
哪错了?
参考答案:
#include <stdio.h>
int main()
{
int n=0;
while((getchar()!='\r')||(getchar()!='\n')) n++;
printf("%d",n);
return 0;
}
哪错了?
参考答案: