Math.pow returns double, need cast, display 256 int result = (int) Math.pow(2, 8); System.out.println("Math.pow(2, 8) : " + result); //2.
確定! 回上一頁