9655 돌 게임

Console/Algorithm 2019. 9. 26. 11:45
1
2
3
4
5
6
7
8
9
int a = Int32.Parse(Console.ReadLine());
            if (a % 2 == 0)
            {
                Console.WriteLine("CY");
            }
            else
            {
                Console.WriteLine("SK");
            }
 

'Console > Algorithm' 카테고리의 다른 글

10869 사칙연산  (0) 2019.09.27
1008 A/B  (0) 2019.09.27
10998 A x B  (0) 2019.09.25
1001 A-B  (0) 2019.09.25
1000 A+B  (0) 2019.09.25