Đăng nhập để hỏi chi tiết
Hãy luôn nhớ cảm ơn và vote 5*
nếu câu trả lời hữu ích nhé!
727
333
// author: cody
#include <bits/stdc++.h>
using namespace std;
string s;
int main()
{
//freopen(".inp" , "r" , stdin);
//freopen(".out" , "w" , stdout);
cin >> s;
string r = s;
reverse(r . begin(), r . end());
cout << (r == s ? "YES" : "NO");
return 0;
}
Hãy giúp mọi người biết câu trả lời này thế nào?
`color(#FFFFFFff)(H)color(#E7E7E7ff)(o)color(#CFCFCFff)(r)color(#B7B7B7ff)(i)color(#9F9F9Fff)(z)color(#878787ff)(o)color(#6F6F6Fff)(n)`
#include <bits/stdc++.h>
using namespace std;
int main() {
string n; cin >> n;
string c = n;
reverse(n.begin(), n.end());
cout << (n == c ? "YES":"NO");
}
Hãy giúp mọi người biết câu trả lời này thế nào?
Bảng tin