[C#] 11일차 - 72. 윤년인지 알아내는 정적 메소드C#/C#200제2021. 1. 31. 16:04
Table of Contents
윤년은 4로 나누어지고 100으로 나누어지지 않거나 400으로 나누어지면 윤년임.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace A072_IsLeapYear
{
class Program
{
static void Main(string[] args)
{
// 2001년~2100년 사이의 윤년을 찾는 프로그램
for(int i=2001; i<=2100; i++)
if (IsLeapYear(i))
Console.Write("{0} ", i);
Console.WriteLine();
}
private static bool IsLeapYear(int year)
{
return year % 4 == 0 && (year % 100 != 0) || (year % 400 == 0);
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 11일차 - 74. 피라미드 메소드 (0) | 2021.02.05 |
---|---|
[C#] 11일차 - 73. 생애계산기 (0) | 2021.01.31 |
[C#] 11일차 - 71. 소수인지를 알아내는 정적 메소드 (0) | 2021.01.31 |
[C#] 11일차 - 70. 세개의 숫자중 가장 큰 수를 찾는 정적 메소드 (0) | 2021.01.31 |
[C#] 10일차 - 69. 속성(Property) (0) | 2021.01.30 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!