你好,其实java里专门针对数字的输出格式规范的函数,就是DecimalFormat。我给你写了一个例子,你一看就明白了。
import java.text.DecimalFormat;
public class look {
public static void main(String[] args) {
DecimalFormat format = new DecimalFormat("000");// 定义一种输出格式为000
int department = 7;// 部门编号7
int employee = 3;// 员工编号3
System.out.println(format.format(department) + format.format(employee));
}
}
输出结果:007003
.toString()
什么意思哦?X和Y就是数字和字母混排?
那不要定义int类型咯,String一样可以嘛。