VBA算命(岁数)
程序员文章站
2022-03-16 18:45:16
...
插入模块,再插入子程序
敲如下代码
Public Sub vc()
Dim name As String
Dim birth As Date
Dim age As Integer
name = "次里取丁"
birth = "1998-8-1"
age = Year(Now()) - Year(birth)
Debug.Print name & "is" & age & "years old"
End Sub
如图
运行结果为
所以,我已经20岁了,该回村找媳妇啦,,,
上一篇: 关于CSS伪类选择器_html/css_WEB-ITnose
下一篇: CSS的伪类选择器