using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _03_staticMethod
{
class Program
{
class Date
{
public static bool IsLeap(int year)
{
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
return true;
else
return false;
}
}
static void Main(string[] args)
{
//Date x = new Date();
Console.WriteLine("2021년은 윤년입니다 : {0}", Date.IsLeap(2021));
Console.WriteLine("2020년은 윤년입니다 : {0}", Date.IsLeap(2020));
}
}
}
'C# > Basics' 카테고리의 다른 글
Class. 속성 (0) | 2021.04.25 |
---|---|
Class. 생성자 메소드 (0) | 2021.04.25 |
Class. 클래스의 멤버 필드와 상수 (0) | 2021.04.25 |
Class. 구조체와 클래스 (0) | 2021.04.25 |
H001. 사칙연산 계산기 만들기 (0) | 2021.04.25 |