Home  >  Article  >  Web Front-end  >  Convert Seconds To Hours_Time and Date

Convert Seconds To Hours_Time and Date

WBOY
WBOYOriginal
2016-05-16 19:12:241305browse

Converts time in seconds to hours, minutes, and seconds

Copy code The code is as follows:

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
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn