Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include <string>

#include <algorithm>
#include <iostream>
using namespace std;
int main()
{
string str;
cout << "Masukkan kata: " << endl;
cin >> str;
if (str == string(str.rbegin(), str.rend()))
{
cout << "Palindrome" << endl;
}
else cout << "not" << endl;
system("pause");
/*string input;
cout << "Please enter a string: ";
cin >> input;
if (input == string(input.rbegin(), input.rend()))
{
cout << input << " is a palindrome" << endl;
}
else cout << "not palindrome" << endl;
system("pause");*/
}

You might also like