Muni Bus

パソコンの操作方法や設定方法を忘れないようにメモしています。ブログを一回引っ越ししているので、所々表示がかなり乱れています・・・

【PowerShell】うるう年か否か判定する

DateTimeクラスのIsLeapYearメソッドを使う。

PS > [DateTime]::IsLeapYear(2023)
False
PS > [DateTime]::IsLeapYear(2024)
True
PS > for ($i = 1996; $i -le 2005; $i++) {[DateTime]::IsLeapYear($i)}
True
False
False
False
True
False
False
False
True
False