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 が大きくなります。