mojo's Blog
Math 클래스 메소드 활용 본문
import java.util.*;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scanner=new Scanner(System.in);
System.out.println(Math.PI); // 파이 3.141592...
System.out.println(Math.ceil(3.5)); // 올림
System.out.println(Math.floor(3.5)); // 내림
System.out.println(Math.sqrt(9)); // 9의 제곱근
System.out.println(Math.exp(2)); // e의 2승
System.out.println(Math.round(3.14)); // 반올림
for(int i=0;i<5;i++) {
System.out.print((int)(Math.random()*45+1)+" ");
}
scanner.close();
}
}
'Java' 카테고리의 다른 글
vector와 HashMap, Collections 클래스의 활용 (0) | 2021.07.20 |
---|---|
명품 JAVA Programming 제 6장 Open Challenge (0) | 2021.07.20 |
StringBuffer 클래스 (0) | 2021.07.20 |
String 관련 메소드 (0) | 2021.07.20 |
boxing and unboxing (0) | 2021.07.20 |
Comments