Convert Seconds To Hours
程序员文章站
2022-06-29 09:07:06
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
复制代码 代码如下:
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
上一篇: 人人都爱喝菊花茶,你知道泡菊花的功效吗
下一篇: 魔芋木瓜你吃对了吗?小编带你长知识
推荐阅读
-
sql时间格式化输出、Convert函数应用示例
-
Sql中将datetime转换成字符串的方法(CONVERT)
-
python编程开发之类型转换convert实例分析
-
Sql Server 2012 转换函数的比较(Cast、Convert和Parse)
-
sqlserver CONVERT()函数用法小结
-
sql cast,convert,QUOTENAME,exec 函数学习记录
-
sql convert函数使用小结
-
详解WinMPG Video Convert(视频转换大师)常见问题分析
-
SQLserver中用convert函数转换日期格式的方法
-
SQL Server 日期函数CAST 和 CONVERT 以及在业务中的使用介绍