#include<stdio.h>
void main()
{
char str[5];
printf("请连续输入四个字符:\n");
scanf("%s",str); /*读入字符串*/
printf("%s",str); /*输出字符串*/
printf("\n");
}