반응형
using System;
namespace baek2
{
class Program
{
static void Main(string[] args)
{
string year_input = Console.ReadLine();
int year = int.Parse(year_input);
if ((year % 4 == 0) && (year % 100 != 0)) Console.WriteLine(1);
else if ((year % 100 == 0) && (year % 400 == 0)) Console.WriteLine(1);
else Console.WriteLine(0);
}
}
}
반응형
'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글
백준 C# 2884 (0) | 2023.04.07 |
---|---|
백준 C# 14681 (0) | 2023.04.07 |
백준 C# 9498 (0) | 2023.04.07 |
백준 C# 1330 (0) | 2023.04.07 |
백준 C# 11382 +) int, long 차이 (0) | 2023.04.07 |
댓글