可以用如下两种方式输入字符串,示例程序段如下:
char string[15];
gets(string); /*遇到回车认为输入结束*/
scanf("%s",string); /*遇到空格认为输入结束*/
。。。
所以在输入的字符串中包含空格时,应该使用gets输入。