#20526: 請問哪裡出了問題 謝謝


s1081404 (1081404)

學校 : 元智大學
編號 : 114867
來源 : [61.218.122.12]
最後登入時間 :
2020-04-22 17:05:56
a022. 迴文 | From: [111.71.32.207] | 發表日期 : 2020-02-03 17:13

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

int main()
{
string a; //0123456 7




while (cin >> a)
{
for (int i = 0; i < a.size() / 2; i++)
{
if (a.at(i) != a.at(a.size() - 1 - i))
{
cout << "no" << endl;
break;
}
else if (i == a.size() / 2 - 1 && a.at(i) == a.at(a.size() - 1 - i))
{
cout << "yes" << endl;
}
}
}


}

 
#20847: Re:請問哪裡出了問題 謝謝


bbubble0906 (bbubble0906)

學校 : 臺北市立成功高級中學
編號 : 79972
來源 : [49.216.175.214]
最後登入時間 :
2020-03-13 11:52:59
a022. 迴文 | From: [49.216.175.214] | 發表日期 : 2020-03-13 11:42

#include
#include
using namespace std;

int main()
{
string a; //0123456 7




while (cin >> a)
{
for (int i = 0; i < a.size() / 2; i++)
{
if (a.at(i) != a.at(a.size() - 1 - i))
{
cout << "no" << endl;
break;
}
else if (i == a.size() / 2 - 1 && a.at(i) == a.at(a.size() - 1 - i))
{
cout << "yes" << endl;
}
}
}


}



你也是WA第六項嗎?

 
ZeroJudge Forum