hnfeng 当前在线
五级士官
TOP
ppll2030 当前在线
四级士官
:Sec2Time set hh=00 set mm=00 set ss=00 if %1 LSS 60 ( set %2=!hh!:!mm!:%1 ) else ( if %1 LSS 3600 ( set /a mm=%1 / 60 set /a ss=%1 - ^(!mm! * 60^) set %2=!hh!:!mm!:!ss! ) else ( set /a hh=%1 / 3600 set /a mm=^(%1 - ^(!hh! * 3600^)^) / 60 set /a ss=%1 - !hh! * 3600 - !mm! * 60 set %2=!hh!:!mm!:!ss! ) ) goto :EOF复制代码
8 0:0:8 请按任意键继续. . . 68 0:0:0 请按任意键继续. . . 168 0:0:0 请按任意键继续. . . 3668 0:0:0 请按任意键继续. . . 13668 0:0:0 请按任意键继续. . .复制代码
77七 当前离线
中校
if %1 LSS 60 ( endlocal & set %2=!hh!:!mm!:%1 ) else ( if %1 LSS 3600 ( set /a mm=%1 / 60 set /a ss=$1 - ^(!mm! * 60^) endlocal & set %2=!hh!:!mm!:!ss! ) else ( set /a hh=%1 / 3600 set /a mm=^(%1 - ^(!hh! * 3600^)^) / 60 set /a ss=%1 - !hh! * 3600 - !mm! * 60 endlocal & set %2=!hh!:!mm!:!ss! ) )复制代码