标签:
#include <stdio.h> #include <stdlib.h> int main() { char str[100]; while(gets(str) != NULL) { printf("%s\n",str); } return 0; }
poj3062---输入什么输出什么
原文地址:http://www.cnblogs.com/gabygoole/p/4588971.html