代码如下(OJ一般可以用的上)
#include <stdio.h>
int main(){
char a[100];
while (gets(a)){
puts(a);
}
return 0;
}

代码如下(OJ一般可以用的上)
#include <stdio.h>
int main(){
char a[100];
while (gets(a)){
puts(a);
}
return 0;
}

979
2312
1085

被折叠的 条评论
为什么被折叠?