Advertisement
rootuss

palindrom

Feb 27th, 2017
440
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.61 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     string wyraz;
  8.     cout<<"podaj wyraz: ";
  9.     cin>>wyraz;
  10.     int dlugosc= wyraz.length();
  11.  
  12.     bool warunek;
  13.     int j=0;
  14.     int i=dlugosc-1;
  15.  
  16.     for(int z=dlugosc/2;z>0;z--)
  17.     {
  18.  
  19.          if(wyraz[j]==wyraz[i])
  20.          {
  21.              warunek=true;
  22.          }
  23.          else
  24.          {
  25.              warunek=false;
  26.              break;
  27.          }
  28.      j++;
  29.      i--;
  30.     }
  31.  
  32.         if(warunek==true)
  33.             cout<<"jest palindromem"<<endl;
  34.         else
  35.             cout<<"nie jest palindromem"<<endl;
  36.  
  37.  
  38.     return 0;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement