欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Convert Seconds To Hours

程序员文章站 2023-11-13 12:48:46
converts time in seconds to hours, minutes, and&nbs...
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