#39340: C++解答


Ghost543 (The Ghost)

學校 : 不指定學校
編號 : 259947
來源 : [218.164.149.227]
最後登入時間 :
2024-02-11 22:26:11
a022. 迴文 | From: [111.255.213.171] | 發表日期 : 2024-02-08 00:12

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

int main(){
    char c[1001];
    cin>>c;
    int a=strlen(c);
    for(int b=0 ; b<a/2 ; b++){
        if(c[b]!=c[a-b-1]){
            cout<<"no";
            return 0;
        }
    }
    cout<<"yes";
}

 
ZeroJudge Forum