gpt4 book ai didi

java - 制作时间字符串

转载 作者:行者123 更新时间:2023-12-01 22:33:29 24 4
gpt4 key购买 nike

是否可以用 2 个两位数字组成一个字符串,中间用“:”表示,这样它看起来像04:02?我尝试过,但没有成功:

int h = 4;
int m = 2;
String time = new String(h+":"+m);
time = String.format("%02d",h+":"+m);

最佳答案

改变

time = String.format("%02d",h+":"+m);  

time = String.format("%02d:%02d", h, m);

此外,您可以将第 3/4 行合并为

String time = String.format("%02d:%02d", h, m);  

Run the code here

关于java - 制作时间字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27220693/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com