看看这个C语言编程题,始终做不来,求大神指点!!

2025-03-23 12:39:48
推荐回答(1个)
回答(1):

#include 
int main()
{
char s[1000];
while(scanf("%s", s) != EOF)
{
printf("%s\n", s);
}
return 0;
}