第五天
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第五天相关的知识,希望对你有一定的参考价值。
1 /*2016-03-11 12:38:28 2 3 */ 4 5 #include<stdlib.h> 6 #include<stdio.h> 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 }
以上是关于第五天的主要内容,如果未能解决你的问题,请参考以下文章