#23765: 超簡易C++(不同思路)


ljsh910230@gapp.hcc.edu.tw (六家高中鍾岦軒)

學校 : 不指定學校
編號 : 139237
來源 : [36.227.143.153]
最後登入時間 :
2021-12-27 23:19:26
a022. 迴文 | From: [120.106.165.214] | 發表日期 : 2020-12-16 12:05

#include <iostream>

 

using namespace std;

 

 

 

int main()

 

{

    string x;

    cin>>x;

    for(int i=0;i<x.size()-1;i++)

    {

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

        {

            cout<<"no";

            return 0;

        }

 

    }

        cout<<"yes";

}

 

 
ZeroJudge Forum