标签:pre main max string des button enter view 注释
1 #include<stdio.h> 2 #include<string.h> 3 int main(){ 4 char str[5][100]; 5 int max=0;//记录最长串的下标 6 int a[5];//记录字符串长度的数组 7 for(int i=0;i<5;i++){ 8 scanf("%s",str[i]); 9 a[i]=strlen(str[i]);//只有将str定义为二维数组才行 10 } 11 for(int i=0;i<5;i++){ 12 if(a[i]>a[max]){ 13 max = i; 14 } 15 } 16 printf("%s",str[max]); 17 }
标签:pre main max string des button enter view 注释
原文地址:http://www.cnblogs.com/panweiwei/p/6568898.html