Convert Seconds To Hours

2022-01-14,,

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

以上就是Convert Seconds To Hours的详细内容,更多请关注本站其它相关文章!

《Convert Seconds To Hours.doc》

下载本文的Word格式文档,以方便收藏与打印。