Advertisement
skb50bd

OneTwoThree

May 19th, 2015
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.73 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int T, i, j, mis;
  7.     char inp[6], stan[3][6] = {{111,110,101,0,0,0},
  8.                                {116,119,111,0,0,0},
  9.                                {116,104,114,101,101,0}};
  10.  
  11.  
  12.     cin >> T;
  13.  
  14.     while (T--)
  15.     {
  16.         cin >> inp;
  17.  
  18.         for (i = 0; i < 3 ; i++)
  19.         {
  20.  
  21.             for (j = 0, mis = 0; inp[j] != 0 ; j++)
  22.             {
  23.  
  24.                 if (inp[j] != stan[i][j])
  25.                     mis++;
  26.                 if (mis == 2)
  27.                     break;
  28.             }
  29.  
  30.             if (inp[j] == 0)
  31.                 break;
  32.         }
  33.  
  34.         if ((i < 3) && (stan[i][j] == 0))
  35.             cout << i+1 << endl;
  36.     }
  37.  
  38.     return 0;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement