Advertisement
rootuss

palindrom Adam

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