https://www.acmicpc.net/problem/1259
제출 코드
#include <iostream>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
string n;
while (true)
{
bool isPal = true;
cin >> n;
if (n == "0")
break;
for (int i = 0; i < n.length() / 2; i++)
{
if (n[i] != n[n.length() - i - 1])
{
isPal = false;
break;
}
}
if (isPal)
cout << "yes" << '\n';
else
cout << "no" << '\n';
}
}
'Programing > 백준, 프로그래머스(C++)' 카테고리의 다른 글
[C++][백준 2609] 최대공약수와 최소공배수 (0) | 2025.01.03 |
---|---|
[C++][백준 1546] 평균 (0) | 2025.01.03 |
[C++][백준 2798] 블랙잭 (0) | 2025.01.03 |
[C++][백준 1978] 소수 찾기 (0) | 2025.01.03 |
[C++][백준 30802] 웰컴 키트 (0) | 2025.01.03 |