Convert Seconds To Hours

(编辑:jimmy 日期: 2024/10/9 浏览:2)

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