Advertisement
Infiniti_Inter

Bogdan - pidor

Dec 13th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5. // Нект тайм говори задание полностью!
  6. string s;
  7.  
  8. bool Check(int i, int j)
  9. {
  10.     if (s[i] != s[j])return false;
  11.     else
  12.         if (j - i >= 0)
  13.             return Check(i + 1, j - 1);
  14.         else
  15.             return true;
  16.  
  17. }
  18.  
  19. int main() {
  20.     getline(cin, s);
  21.     int i, j;
  22.     cin >> i >> j;
  23.     i--, j--;
  24.     bool fl = Check(i, j);
  25.     if (fl)
  26.         cout << "YES\n";
  27.     else
  28.         cout << "NO\n";
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement