Advertisement
noshin98

uva 12243

Oct 12th, 2016
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.96 KB | None | 0 0
  1. /*Bismillah*/
  2. #include<stdio.h>
  3. #include<string.h>
  4. int main()
  5. {
  6.     char s[1500];
  7.     while(1)
  8.     {
  9.         gets(s);
  10.         if(s[0]=='*')
  11.         {
  12.             break;
  13.         }
  14.  
  15.         else
  16.         {
  17.             int l,i,flag=1;
  18.             char c[2];
  19.             l=strlen(s);
  20.             if(s[0]>=65&&s[0]<=90)
  21.                 c[0]=s[0]+32;
  22.             else if(s[0]>=97&&s[0]<=122)
  23.                 c[0]=s[0]-32;
  24.             for(i=1;i<=l;i++)
  25.             {
  26.                 if(s[i]==' ')
  27.                 {
  28.                     if(s[i+1]==s[0]||s[i+1]==c[0])
  29.                     {
  30.  
  31.                         continue;
  32.                     }
  33.                     else
  34.                     {
  35.                         flag=0;
  36.                         break;
  37.                     }
  38.                 }
  39.             }
  40.             if(flag==1)
  41.                 printf("Y\n");
  42.             else
  43.                 printf("N\n");
  44.         }
  45.     }
  46.     return 0;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement