我在x
定义的行上遇到越界错误。我究竟做错了什么?
import java.util.ArrayList;
import java.lang.Math;
public class poopy
{
public static void main(String[] args)
{
ArrayList<Integer> num = new ArrayList<Integer>();
double x;
for(int j=1; j<5; j++)
{
num.add(j);
}
for(int i: num)
{
x = num.get(i) * Math.pow(10,i);
System.out.println(x);
}
}
}
这将用于计算器,ArrayList
每次按下数字按钮时 int 都会增长。