10988 c++1 10988) 팰린드롬인지 확인하기 출처 https://www.acmicpc.net/problem/10988 10988번: 팰린드롬인지 확인하기 첫째 줄에 단어가 주어진다. 단어의 길이는 1보다 크거나 같고, 100보다 작거나 같으며, 알파벳 소문자로만 이루어져 있다. www.acmicpc.net 내 풀이 #include #include using namespace std; string input = ""; string input2 = ""; int main() { cin >> input; input2 = input; reverse(input.begin(), input.end()); if (input == input2)cout 2022. 6. 17. 이전 1 다음