본문 바로가기
전공공부/코딩테스트

(c++) 백준 "1259) 팰린드롬수"

by 시아나 2022. 6. 2.

https://www.acmicpc.net/problem/1259

 

1259번: 팰린드롬수

입력은 여러 개의 테스트 케이스로 이루어져 있으며, 각 줄마다 1 이상 99999 이하의 정수가 주어진다. 입력의 마지막 줄에는 0이 주어지며, 이 줄은 문제에 포함되지 않는다.

www.acmicpc.net


#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;
}