자바

[생활코딩] JAVA1 - 6.3. 숫자와 연산

목표는 커리 2021. 3. 29. 04:45
728x90
SMALL

Math


public class Number {

    public static void main(String[] args) {
        //Operator
        System.out.println(6+2); //8
        System.out.println(6 - 2); //4
        System.out.println(6 * 2); //12
        System.out.println(6 / 2 ); // 3

        System.out.println(Math.);

    }

}
  • Math를 쓰면 다양한 수학과 관련된 것들을 사용할 수 있다.
public class Number {

    public static void main(String[] args) {
        //Operator
        System.out.println(6+2); //8
        System.out.println(6 - 2); //4
        System.out.println(6 * 2); //12
        System.out.println(6 / 2 ); // 3

        System.out.println(Math.PI); // 3.141592653589793
        System.out.println(Math.floor(Math.PI)); // 3.0
        System.out.println(Math.ceil(Math.PI)); // 4.0

    }

}
  • floor : 내림
  • ceil : 올림
728x90
LIST