jackieradallhazik

http://www.spoj.com/problems/PALIN/

Apr 11th, 2016
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.46 KB | None | 0 0
  1.     #include <iostream>
  2.     using namespace std;
  3.     long int reverse(long int x){
  4.         long int re = 0;
  5.         while(x!=0){
  6.             int m = x%10;
  7.             re = re*10+m;
  8.             x /= 10;
  9.            
  10.         }
  11.         return re;
  12.     }
  13.    
  14.     int main(){
  15.         int n;
  16.         cin >> n;
  17.         for(int i=0;i<n;i++){
  18.             long int t;
  19.             cin >> t;
  20.             long int u = t;
  21.             while(1){
  22.                
  23.                 u += 1;
  24.                 if(u == reverse(u)){
  25.                     cout << u;
  26.                     break;
  27.                 }
  28.             }
  29.             if(i!=n-1){
  30.                 cout << endl;
  31.             }
  32.         }
  33.         return 0;
  34.     }
Add Comment
Please, Sign In to add comment