본문 바로가기
코딩테스트 준비/백준 C#

백준 C# 10988

by 코딩하는 돼징 2023. 5. 8.
반응형
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace baek2
{
    class Program
    {
        static void Main(string[] args)
        {
            string input = Console.ReadLine();
            int answer = 1;
            char[] string_1 = new char[input.Length];
            char[] string_2 = new char[input.Length];
            for (int i = 0; i < input.Length; i++)
            {
                string_1[i] = input[i];
            }
            int count = 0;
            for(int i = input.Length; i>0;i--)
            {
                string_2[count] = input[i-1];
                count++;
            }

            for(int i = 0; i<input.Length;i++)
            {
                if (string_1[i] != string_2[i])
                {
                    answer = 0;
                    break;
                }
            }
            Console.WriteLine(answer);
        }
    }
}
반응형

'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글

백준 C# - 4344  (0) 2023.05.13
백준 C# 1157  (0) 2023.05.08
백준 C# 10812 +) 풀이  (0) 2023.05.03
백준 C# 2444  (0) 2023.04.28
백준 C# 3003  (0) 2023.04.27

댓글