#include<stdio.h> void main() { int i=0; char a[100]; gets(a); fflush(stdin); while(a[i]!='\0')//注意这点改动 { putchar(a[i]); i++; } }