如果只是求2,可以for(int i = 0; i < 5;i++){ int s = 2 << i; System.out.println("2的"+(i+1)+"次幂是:"+ s ); }
Math.pow(2, 1-5)
i=1-5Math.pow(2, i) ;