首页 > 开发 > JS > 正文

Convert Seconds To Hours

2024-09-06 12:42:07
字体:
来源:转载
供稿:网友
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
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表