说明
例子
#include "vbcompat.bi"
Dim a As Double, b As Double
a = 0
Print "日期序列的起源是:"
Print Format(a, "yyyy / mm / dd hh:mm:ss")
Print
a = Now
Print "现在的时间是:"
Print Format(a, "yyyy / mm / dd hh:mm:ss")
Print
b = DateSerial(2000,1,1)
Print Int(a-b) & "自2000/01/01以来已经过去了几天"