VB编程:DateSerial通过闰月判断闰年

简介: VB编程:DateSerial通过闰月判断闰年

运行效果:


3208ee2242a2df4ad04d70c1aa9c3368.png

程序代码:

Private Function MonthToLeapYear(ByVal Yea As Integer) As Boolean

   MonthToLeapYear = Day(DateSerial(Yea, 2, 29)) = 29

End Function


Private Sub Command1_Click()

   If Len(Text1.Text) <= 4 Then

       If MonthToLeapYear(Text1.Text) = True Then

           Print Text1.Text & "年是闰年"

       Else

           Print Text1.Text & "年是平年"

       End If

   Else

      Print "错误:请输入正确的年份!"

   End If

End Sub


学习总结:

DateSerial返回包含指定的年、月、日的 Variant (Date)。


语法 DateSerial(year, month, day)


相关文章
|
6月前
|
C语言
C语言:判断闰年(简单)
C语言:判断闰年(简单)
|
6月前
|
存储 C语言
C语言判断闰年
C语言判断闰年
155 0
|
6月前
|
C语言
C语言第三十九弹--判断闰年and打印1000-2000之间闰年
C语言第三十九弹--判断闰年and打印1000-2000之间闰年
|
C语言
C 语言实例 - 判断闰年
用户输入年份,判断该年份是否为闰年。
62 2
|
Java
Java实现判断闰年
Java实现判断闰年
109 0
【C语言】判断闰年的函数
【C语言】判断闰年的函数
|
C语言
C语言 打印1000年到2000年之间的闰年
闰年的定义: 能被4整除,但不能被100整除的是闰年 能被400整除是闰年
|
Java
Java经典编程习题100例:第1例:编写程序,判断给定的某个年份是否是闰年
Java经典编程习题100例:第1例:编写程序,判断给定的某个年份是否是闰年
130 0
|
人工智能 算法
VB编程:for循环输出杨辉三角-45
VB编程:for循环输出杨辉三角-45
181 1