백준 2753 윤년

Console Programming/C# Console 2019. 9. 26. 08:29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
 
namespace _2753
{
    class Program
    {
        static void Main(string[] args)
        {
            int input = int.Parse(Console.ReadLine());
 
            if((input%4 == 0 && input%100 != 0|| input%400 ==0)
            {
                Console.WriteLine(1);
            }
            else
            {
                Console.WriteLine(0);
            }
        }
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
 

 

'Console Programming > C# Console' 카테고리의 다른 글

7일차 switch문의 사용  (0) 2019.09.26
백준 2884 알람 시계  (0) 2019.09.26
백준 9498 시험 성적  (0) 2019.09.26
백준 1330 두 수 비교하기  (0) 2019.09.26
백준 10430 나머지  (0) 2019.09.25
: