#13019: C++ 使用指令碼最快不麻煩


timmy940410 (遊艇)

學校 : 臺北市私立延平高級中學
編號 : 69053
來源 : [122.116.197.27]
最後登入時間 :
2021-02-19 11:39:00
a022. 迴文 | From: [114.32.213.13] | 發表日期 : 2017-11-22 21:22

查看程式碼 #3541652

a022. 迴文
#include<iostream>
#include<string>
#include<algorithm> 
using namespace std;
int main(){
	string a;
	while(cin>>a){
		string b;
		b=a;
		reverse(b.begin(),b.end());
		if(b==a){
			cout<<"yes"<<endl;
		}else{
			cout<<"no"<<endl;
		}
	}
}
Close
CPP

 

 
#16657: Re:C++ 使用指令碼最快不麻煩


duncan103015 (錦毛爺)

學校 : 國立溪湖高級中學
編號 : 85458
來源 : [49.216.38.72]
最後登入時間 :
2021-02-19 10:56:10
a022. 迴文 | From: [101.13.44.167] | 發表日期 : 2019-01-26 16:21

查看程式碼 #3541652

a022. 迴文
#include
#include
#include 
using namespace std;
int main(){
	string a;
	while(cin>>a){
		string b;
		b=a;
		reverse(b.begin(),b.end());
		if(b==a){
			cout<<"yes"<<endl;
		}else{
			cout<<"no"<<endl;
		}
	}
}
Close
CPP

 

厲害


 

 
ZeroJudge Forum