#28067: 不使用for 簡易寫法c++


a101004a101004@gmail.com (秋天)

學校 : 不指定學校
編號 : 164415
來源 : [101.12.30.121]
最後登入時間 :
2022-02-23 09:55:23
a022. 迴文 | From: [220.130.10.185] | 發表日期 : 2021-11-12 17:53

 #include <iostream>

#include<algorithm>
#include <stdio.h>
#include <string.h>
using namespace std;
int main() {
char a[1000]={0};
char b[1000]={0};
cin>>a;
int x=0,i=0;

while(a[i]!=0){
  b[i]=a[i];
  i++;
  x++;
}

reverse(&a[0],&a[x]);

if(strncmp(a,b,x+1)==0){//C語言 判斷字串陣列是否一樣
  cout<<"yes";
}
else{
  cout<<"no";
}


}
 
ZeroJudge Forum