#13536: 請問這樣為甚麼錯 WA (line:3)


s940063t (lihchyi)

學校 : 元智大學
編號 : 77006
來源 : [220.135.42.39]
最後登入時間 :
2018-12-18 00:46:20
a022. 迴文 | From: [60.251.225.88] | 發表日期 : 2018-03-15 15:30

#include<iostream>
#include<string>
using namespace std;
int main()
{
string str,str1;
while (cin >> str)
{
for (int i = str.length() - 1; i >= 0; i--)
{
str1 += str[i];
}
if (str1 == str)
{
cout << "yes" << endl;
}
else
{
cout << "no" << endl;
}
}
return 0;
}

 
#13537: Re:請問這樣為甚麼錯 WA (line:3)


justinO__o (夜貓)

學校 : 臺北市立成功高級中學
編號 : 51052
來源 : [111.71.212.14]
最後登入時間 :
2024-09-22 17:57:48
a022. 迴文 | From: [223.137.68.17] | 發表日期 : 2018-03-15 22:07

#include
#include
using namespace std;
int main()
{
string str,str1;
while (cin >> str)
{
for (int i = str.length() - 1; i >= 0; i--)
{
str1 += str[i];
}
if (str1 == str)
{
cout << "yes" << endl;
}
else
{
cout << "no" << endl;
}
}
return 0;
}


string str, str1;

while (cin >> str) {

  str1 = "";

  for ...

}

 
ZeroJudge Forum