Advertisement
noshin98

uva 11577

Jan 9th, 2017
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.99 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<string.h>
  3.  
  4. int main()
  5. {
  6.     char str[1000];
  7.     char tst[1000];
  8.     int i, test,len,j,t,max,count[1000];
  9.  
  10.     for(i=0; i<26; i++)
  11.     {
  12.         tst[i]=i+'a';
  13.     }
  14.  
  15.     scanf("%d",&test);
  16.     getchar();
  17.     for(t=0; t<test; t++)
  18.     {
  19.         max=0;
  20.  
  21.         gets(str);
  22.         len=strlen(str);
  23.         for(i=0; i<26; i++)
  24.         {
  25.             count[i]=0;
  26.             for(j=0; j<len; j++)
  27.             {
  28.                 if(str[j]>='A'&&str[j]<='Z')
  29.                 {
  30.                     str[j]=str[j]-'A'+'a';
  31.                 }
  32.                 if(tst[i]==str[j])
  33.                 {
  34.                     count[i]++;
  35.                 }
  36.             }
  37.             if(max<count[i])
  38.             {
  39.                 max=count[i];
  40.             }
  41.         }
  42.  
  43.         for(i=0; i<26; i++)
  44.         {
  45.             if(count[i]==max)
  46.             {
  47.                 printf("%c",tst[i]);
  48.             }
  49.         }
  50.         printf("\n");
  51.     }
  52.  
  53.     return 0;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement