BOJ109 [BOJ C#] 10988 팰린드롬 using System; using System.Linq; namespace _10988 { class Program { static void Main(string[] args) { string str = Console.ReadLine(); string strReverse = new string(str.Reverse().ToArray()); int palindrome = (str == strReverse) ? 1 : 0; Console.WriteLine(palindrome); } } } 2023. 1. 15. 이전 1 ··· 16 17 18 19 다음