#25410: C++ 利用break and continue


x90613@gmail.com (Tube You)

學校 : 不指定學校
編號 : 153718
來源 : [111.243.40.109]
最後登入時間 :
2021-05-19 20:35:20
a022. 迴文 | From: [111.243.40.109] | 發表日期 : 2021-05-19 20:42

#include <iostream>

using namespace std;

 

int main() {

    string input;

 

    while(cin>>input){

        int count=0;//紀錄不符合次數

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

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

                continue;

            }

            else{

                count++;

                break;

            }

        }

        if(count==0){

            cout<<"yes"<<endl;

        }else{

            cout<<"no"<<endl;

        }

    }

}

 

 
ZeroJudge Forum