C#/알고리즘

4. 2753번 윤년

dev_sr 2020. 4. 26. 11:05

윤년일 때는 1 출력

아니면 0 출력

 

1. 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace _2753
{
    class Program
    {
        static void Main(string[] args)
        {
            int input = Convert.ToInt32(Console.ReadLine());
 
            if(input%4==0 && input%100!=0 || input%400==0)
            {
                Console.WriteLine(1);
            }
            else
            {
                Console.WriteLine(0);
            }
        }
    }
}
 
 

 

 

2. 결과값

 

1) 윤년일때

 

2) 아닐때

 

 

출처

https://www.acmicpc.net/problem/2753

'C# > 알고리즘' 카테고리의 다른 글

6. 2884번 알람시계  (0) 2020.04.26
5. 14681번 사분면 고르기  (0) 2020.04.26
3. 10952번 A+B-5  (0) 2020.04.07
2. 9498번 시험 성적  (0) 2020.04.07
1. 1330번 두 수 비교하기  (0) 2020.04.07