#29560: c++ 紀錄


e3524167 (Kenlogin)

學校 : 不指定學校
編號 : 186743
來源 : [182.233.207.92]
最後登入時間 :
2022-03-17 21:12:56
a022. 迴文 | From: [182.233.207.92] | 發表日期 : 2022-03-12 02:49

#include <iostream>

#include <string> 

#include <sstream>

using namespace std;

int main()

{

string x;

while (cin >> x)

{

bool n = true;

for (int i = 0; i < x.length()/2; i++)

{

if (x[i] != x[x.length() - 1 - i])

{

n = false;

break;

}

}

cout << (n ? "yes" : "no") << endl;

}

}

 
ZeroJudge Forum