https://www.acmicpc.net/problem/1259
#include <iostream>
#include <string>
using namespace std;
bool solution(string str) {
for (int i = 0; i <= str.size() / 2; i++) {
if (str[i] != str[str.size() - i - 1]) {
return false;
}
}
return true;
}
int main() {
string str = "";
cin >> str;
while (str.compare("0") != 0) {
if (solution(str)) {
cout << "yes" << endl;
}
else {
cout << "no" << endl;
}
cin >> str;
}
return 0;
}
'전공공부 > 코딩테스트' 카테고리의 다른 글
(c++) 백준 "2869) 달팽이는 올라가고 싶다" (0) | 2022.06.02 |
---|---|
(c++) 백준 "2775) 부녀회장이 될테야" (0) | 2022.06.02 |
(c++) 백준 "15829)Hashing" (0) | 2022.06.02 |
(c++) 백준 "2798) 블랙잭" (0) | 2022.06.02 |
(c++) 백준 "2292) 벌집" (0) | 2022.06.02 |