본문 바로가기
알고리즘

[C++]백준 10988번: 팰린드롬인지 확인하기

by Kwoncorin 2020. 5. 24.
728x90

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

 

10988번: 팰린드롬인지 확인하기

첫째 줄에 단어가 주어진다. 단어의 길이는 1보다 크거나 같고, 100보다 작거나 같으며, 알파벳 소문자로만 이루어져 있다.

www.acmicpc.net

1. 문제 설명

 

앞으로 읽을 때와 거꾸로 읽을 때 똑같다면 1, 다르다면 0을 출력하는 문제이다.

 

2. 코드

 

#include <iostream>
#include <string>
using namespace std;

int main(void)
{
	
	cin.tie(NULL);
	ios::sync_with_stdio(false);
	
	string input;
	bool check = true;
	int size;

	cin >> input;

	size = input.length();

	for (int x = 0; x < size / 2; x++)
	{
		if (input[x] != input[size - x - 1])
		{
			check = false;
			break;
		}
	}

	if (check)
		cout << "1\n";
	else
		cout << "0\n";

	return 0;
}
728x90