728x90
https://www.acmicpc.net/problem/10988
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
'알고리즘' 카테고리의 다른 글
[C++]백준 1237번: 정ㅋ벅ㅋ (0) | 2020.05.26 |
---|---|
[C++]백준 1297번: TV 크기 (0) | 2020.05.26 |
[C++]백준 1032번: 명령 프롬프트 (0) | 2020.05.24 |
[C++]백준 14916번: 거스름돈 (0) | 2020.05.22 |
[C++]백준 10101번: 삼각형 외우기 (1) | 2020.05.22 |