delphi 秒计算分钟、小时函数
摘要:
function GetTimeStr(Sec: Integer): string; begin if Sec >= 3600 then Result := Format('%d hour %d min %d sec', [Sec div 3600, Sec mod 3600 div 60, Sec 阅读全文
posted @ 2020-12-17 22:56 癫狂编程 阅读(515) 评论(0) 推荐(0)