我如何创建一个简单的数字计数器,最多可以计数到n个,唯一的问题是位数不能一直更改,例如,如果n = 999 ==(一个3位数的数字),那么它会从001- 999而不是我一直得到的1-999开始计数。我尝试使用Biginterger但BigInter one.add(one)==“ 1”不是“ 001”
public static void main(String [] args){
BigInteger one= new BigInteger("001");
BigInteger result =new BigInteger("000");
for (int a =0;a<=999;a++)
{
System.out.println(result);
result=result.add(one);
}
}
答案 0 :(得分:3)
Sami Kuhmonen已经给了您答案。
以下是您为自己的格式设置字符串的方式:
override var sceneInformation: SceneInformation {
didSet {
cameraNode.camera?.xFov = Double(sceneInformation.fieldOfView.horizontal)
cameraNode.camera?.yFov = Double(sceneInformation.fieldOfView.vertical)
sceneView.frame = sceneInformation.frame
}
}