1 /*2016-03-11 12:38:28 2 3 */ 4 5 #include6 #include 7 int main(void) 8 { 9 char str1[10], str2[10],str[50];10 scanf("%[^\n]",str1);//%[]是接受一连串字符串包括空格,直到遇到^后的字符才结束11 //sprintf(str, "%s %s", str1, str2);12 printf("%s", str1);13 system(str1);14 //system("pause");15 }