标签:style blog io color ar os sp for 数据
1 #include <stdio.h> 2 #include <string.h> 3 4 int main(){ 5 int T; 6 int n; 7 char s[10]; 8 char min[10]; 9 int i; 10 11 scanf("%d",&T); 12 13 while(T--){ 14 scanf("%d",&n); 15 16 for(i=0;i<n;i++){ 17 scanf("%s",&s); 18 19 if(i==0){ 20 strcpy(min,s); 21 continue; 22 } 23 24 if(strcmp(s,min)<0) 25 strcpy(min,s); 26 } 27 printf("%s\n",min); 28 } 29 return 0; 30 }
标签:style blog io color ar os sp for 数据
原文地址:http://www.cnblogs.com/zqxLonely/p/4098261.html