摘要: public static String getCourseTime(Integer seconds) { int day=seconds/(60*60*24);//换成天 int hour=(seconds-(60*60*24*day))/3600;//总秒数-换算成天的秒数=剩余的秒数 剩余的秒数换算为小时 int minute=(sec... 阅读全文
posted @ 2018-03-15 16:53 Againn 阅读(2879) 评论(0) 推荐(0) 编辑