【整理】ACM代码整理 BUN 1005

http://www.bnuoj.com/bnuoj/problem_show.php?pid=1005

#include <stdio.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main() {
	char* str[10];
	while(1){
		if(scanf("%s",&str) ==EOF) break;
		printf("%s\n",str);
	}
	return 0;
}


你可能感兴趣的:(【整理】ACM代码整理 BUN 1005)