#include <iostream> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ string s; int n; int main(int argc, char** argv) { ios_base::sync_with_stdio(0); cin>>n; cin >> s; if( equal(s.begin(), s.begin() + s.size()/2, s.rbegin()) ) cout << "TAK"; else cout << "NIE"; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #include <iostream> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ string s; int n; int main(int argc, char** argv) { ios_base::sync_with_stdio(0); cin>>n; cin >> s; if( equal(s.begin(), s.begin() + s.size()/2, s.rbegin()) ) cout << "TAK"; else cout << "NIE"; return 0; } |