[BOJ/C++] 10988 팰린드롬인지 확인하기

mani·2023년 5월 23일
0

baekjoon_step

목록 보기
56/73

🔄

#include <iostream>
#include <string>

using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	string s;
	cin >> s;

	int	ans = 1;
	for (int i = 0; i < s.size(); i++) {
		if (s[i] != s[s.size() - i - 1]) {
			ans = 0;
			break;
		}
	}
	cout << ans;

	return 0;
}
profile
log

0개의 댓글