秒转换时分秒

该博客提供了一个Java程序,用于将秒数转换为时、分、秒的格式。程序首先定义了小时和分钟的常量,然后计算输入秒数对应的小时数、分钟数和剩余的秒数,并使用辅助方法`timeFormat`进行格式化输出,确保显示两位数的时间单位。
摘要由CSDN通过智能技术生成
/**
 * 秒转换时分秒
 * @param args
 */
public static void main(String[] args) {
    int minutes = 60;
    int hours = 60 * 60;
    int seconds = 12425;//需要转换的秒数
    int convertHours = seconds / hours;
    int convertMinutese = seconds % hours / minutes;
    int convertSeconds = seconds % hours % minutes % minutes;
    System.out.println(timeFormat(convertHours, convertMinutese, convertSeconds));
}

/**
 * 格式化时间
 * @param params
 * @return
 */
public static String timeFormat(int... params) {
    StringBuilder sbd = new StringBuilder();
    for (int i = 0, length = params.length; i < length; i++) {
        if (params[i] < 10) {
            sbd.append("0").append(params[i]).append(":");
        } else {
            sbd.append(params[i]).append(":");
        }
    }
    return sbd.deleteCharAt(sbd.length() - 1).toString();
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值