Pabon_SEC

Decoding the message

Apr 7th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.36 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. char str[1003];
  6.  
  7. int main()
  8. {
  9.     int test,i,j,k,len,x;
  10.  
  11.     string s;
  12.  
  13.     scanf("%d",&test);
  14.  
  15.     getchar();
  16.  
  17.     getchar();
  18.  
  19.     for(x=1; x<=test; x++)
  20.     {
  21.         i = 0;
  22.  
  23.         int cnt = 1,take = 1;
  24.  
  25.         bool found = true;
  26.  
  27.         printf("Case #%d:\n",x);
  28.  
  29.         while(gets(str) && str[0])
  30.         {
  31.             len = strlen(str);
  32.  
  33.             s="";
  34.  
  35.             for(k=0; k<len; k++)
  36.             {
  37.                 if((str[k]>='a' && str[k]<='z')||(str[k]>='A' && str[k]<='Z'))
  38.                 {
  39.                     while(str[k]!=' ' && str[k]!='\0')
  40.                     {
  41.                         if(cnt==take && found)
  42.                         {
  43.                             s+=str[k];
  44.  
  45.                             take++;
  46.  
  47.                             cnt = 1;
  48.  
  49.                             found = false;
  50.                         }
  51.  
  52.                         cnt++;
  53.  
  54.                         k++;
  55.                     }
  56.  
  57.                     if(str[k]==' ')
  58.                     {
  59.                         cnt = 1;
  60.                     }
  61.                 }
  62.  
  63.                 found = true;
  64.             }
  65.  
  66.             printf("%s\n",s.c_str());
  67.  
  68.             cnt = 1;
  69.  
  70.             take = 1;
  71.         }
  72.  
  73.         if(x<test)
  74.             puts("");
  75.     }
  76.  
  77.     return 0;
  78. }
Advertisement
Add Comment
Please, Sign In to add comment