时间日期

关注公众号 jb51net

关闭
首页 > 网络编程 > javascript > 网页特效 > 时间日期 >

Convert Seconds To Hours

作者:

Convert Seconds To Hours
Converts time in seconds to hours, minutes, and seconds
复制代码 代码如下:

intTotalSecs = 15438
intHours = intTotalSecs \ 3600
intMinutes = (intTotalSecs Mod 3600) \ 60
intSeconds = intTotalSecs Mod 60
WScript.Echo "Hours: " & intHours
WScript.Echo "Minutes: " & intMinutes
WScript.Echo "Seconds: " & intSeconds
阅读全文