1 개요
- Java pow()
- 자바 pow()
- Math.pow()
Java
Copy
public class MyClass {
public static void main(String args[]) {
System.out.println( Math.pow(2, -3) ); // 0.125
System.out.println( Math.pow(3, 0) ); // 1.0
System.out.println( Math.pow(3, 1) ); // 3.0
System.out.println( Math.pow(3, 2) ); // 9.0
System.out.println( Math.pow(3, 4) ); // 81.0
}
}
2 같이 보기
3 참고
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.
- 분류 댓글:
- Java (3)
Java 튜토리얼 웹사이트 ― Thesmolt젠킨스 ― John Jeong젠킨스 ― Icesky