[문제]
https://www.acmicpc.net/problem/1259
[코드]
#include <iostream>
#include <string>
using namespace std;
int main() {
string s;
bool check;
while (true) {
check = true;
cin >> s;
if (s == "0")
break;
for (int i = 0; i < s.length()/2; i++) {
if (s[i] != s[s.length() - i -1]) {
check = false;
break;
}
}
if (check)
cout << "yes" << "\n";
else
cout << "no" << "\n";
}
return 0;
}
'알고리즘 공부 및 문제 풀이 > 백준(BOJ)' 카테고리의 다른 글
[기출 중] 문자열 압축 (0) | 2021.08.26 |
---|---|
[기출 하] 백준 13458 시험 감독 (0) | 2021.08.26 |
[기출 하] O, X 퀴즈 (0) | 2021.08.26 |
[기출 하] 깨알나라 신문 기사 (0) | 2021.08.26 |
[c++] 백준 1931 회의실 배정 (0) | 2021.08.24 |