#23750: 超簡單C++


jerrygenius88@gmail.com (許桀瑜)

學校 : 不指定學校
編號 : 109369
來源 : [36.231.172.183]
最後登入時間 :
2021-09-15 22:12:49
a022. 迴文 | From: [36.229.104.79] | 發表日期 : 2020-12-15 17:07

#include <iostream>

using namespace std;

 

int main()

{

 

string input;

 

while (cin >> input) {

for (int i = 0; i < input.length(); i++) {

if (input[i] == input[input.length() - i - 1]) {

cout << "yes" << endl;

break;

}

else

{

cout << "no" << endl;

break;

}

 

}

 

}

 

return 0;

}

 
ZeroJudge Forum