Math.min
Math.pow
Math.sqrt
第1引数を第2引数で累乗した値を返します。
Math.pow(base, exp)
아래 값을 입력하면 예제에 즉시 반영됩니다.
System
out
println
Math
System.out.println(Math.pow(2, 10)); // 1024.0 System.out.println(Math.pow(3, 3)); // 27.0