include<stdio.h>int mian(){ char a[100]; scanf("%s",a); \/\/键盘输入字符串 printf("%s",a);\/\/控制台输出字符串 return 0;}