C語言 輸入5個字符串,將其中最小的打印出來

C語言 輸入5個字符串,將其中最小的打印出來 代碼: #include<stdio.h> #include <string.h> void main(){ char str[10],temp[10]; int i; gets(temp);//輸一個字符串 for(i=0;i<4;i++)//輸入四個字符串 { gets(str); if(strcmp(temp,str)>0)//進行比較 strc
相關文章
相關標籤/搜索