#26753: C++簡單reverse解法


andyli0123 (培哥)

學校 : 國立臺灣師範大學
編號 : 94193
來源 : [123.252.15.10]
最後登入時間 :
2024-10-20 16:52:15
a022. 迴文 | From: [36.226.42.184] | 發表日期 : 2021-08-23 08:22

#include <iostream>
#include <algorithm>
using namespace std;

int main(){
ios::sync_with_stdio(0), cin.tie(0);
string s;
cin >> s;
string s2 = s;
reverse(s.begin(), s.end());
if(s == s2) cout << "yes\n";
else cout << "no\n";
}
 
ZeroJudge Forum