Pabon_SEC

2D Hieroglyphs decoder

Apr 6th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.81 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. char str[12][85];
  6.  
  7. int main()
  8. {
  9.  
  10.     int n,i,j,len,sum,a,x;
  11.  
  12.     string s;
  13.  
  14.     char ch;
  15.  
  16.     scanf("%d",&n);
  17.  
  18.     getchar();
  19.  
  20.     for(x=1;x<=n;x++)
  21.     {
  22.         if(x>1)
  23.         {
  24.             getchar();
  25.         }
  26.  
  27.         for(i=1;i<=10;i++)
  28.         {
  29.             gets(str[i]);
  30.         }
  31.  
  32.         len = strlen(str[1]);
  33.  
  34.         s = "";
  35.  
  36.         sum = 0;
  37.  
  38.         for(i=1;i<len-1;i++)
  39.         {
  40.             sum = 0;
  41.  
  42.             for(j=2;j<10;j++)
  43.             {
  44.                 a = str[j][i];
  45.  
  46.                 if(a==92)
  47.                 {
  48.                     sum+=(1<<j-2);
  49.                 }
  50.             }
  51.  
  52.             char ch = sum;
  53.  
  54.             s+=ch;
  55.         }
  56.  
  57.         printf("%s\n",s.c_str());
  58.     }
  59.  
  60.    return 0;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment