因为比较简单,直接上代码吗,相信大家都能看的懂的。
public static void main(String[] args) {
int num= 1;
// 0 代表前面补充0
// 3代表长度为3
// d 代表参数为正数型
String str = String.format("%03d", num);
System.out.println(str); // 001
}
时间: 2024-10-09 00:59:41
因为比较简单,直接上代码吗,相信大家都能看的懂的。
public static void main(String[] args) {
int num= 1;
// 0 代表前面补充0
// 3代表长度为3
// d 代表参数为正数型
String str = String.format("%03d", num);
System.out.println(str); // 001
}