C#、vb.net及SQL斷定指定年份能否為閏年的辦法。本站提示廣大學習愛好者:(C#、vb.net及SQL斷定指定年份能否為閏年的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C#、vb.net及SQL斷定指定年份能否為閏年的辦法正文
本文實例講述了本文章引見了在c#,vb.net,sql中來斷定指定日期能否為閏年的辦法。分享給年夜家供年夜家參考。詳細完成辦法以下:
C#代碼以下:
public bool IsLeapYear(int year)
{
if ((year < 1) || (year > 9999))
{
throw new ArgumentOutOfRangeException("year", "年份必需是從1至9999之間數字.");
}
if ((year % 4) != 0)
{
return false;
}
if ((year % 100) == 0)
{
return ((year % 400) == 0);
}
return true;
}
VB.NET:
Public Function IsLeapYear(year As Integer) As Boolean
If (year < 1) OrElse (year > 9999) Then
Throw New ArgumentOutOfRangeException("year", "年份必需是從1至9999之間數字.")
End If
If (year Mod 4) <> 0 Then
Return False
End If
If (year Mod 100) = 0 Then
Return ((year Mod 400) = 0)
End If
Return True
End Function
sql代碼以下:
udf_DaysInMonth_Ver2
CREATE FUNCTION [dbo].[udf_DaysInMonth]
(
@Date DATETIME
)
RETURNS INT
AS
BEGIN
RETURN CASE WHEN MONTH(@Date) IN (1,3,5,7,8,10,12) THEN 31
WHEN MONTH(@Date) IN (4,6,9,11) THEN 30
ELSE CASE WHEN (YEAR(@Date) % 4 = 0 AND YEAR(@Date) % 100 <> 0) OR (YEAR(@Date) % 400 = 0)
THEN 29
ELSE 28
END
END
END
如許我就就把三個實例都以代碼情勢直接寫出來了。
願望本文所述對年夜家的C#、VB.NET及SQL法式設計有所贊助。