// 인스턴스 메서드와 클래스 메서드의 활용 - Math 클래스
package com.eomcs.oop.ex04;
public class Exam0230 {
public static void main(String[] args) throws Exception {
// Math 클래스는 수학 관련 메서드를 모아둔 클래스이다.
// 전체 메서드가 "클래스 메서드=스태틱 메서드"이다.
// => 절대값 계산
System.out.println(Math.abs(-200));
// => ceil() : 파라미터로 주어진 부동소수점이 바로 위 큰 정수 값을 리턴
// => floor() : 파라미터로 주어니 부동소수점의 바로 밑 작은 정수 값을 리턴
System.out.println(Math.ceil(3.28)); // 4
System.out.println(Math.floor(3.28)); // 3
'ㅋㅌ' 카테고리의 다른 글
대소문자출력하기 (0) | 2023.06.27 |
---|---|
문자열 정렬하기 (1) (0) | 2023.06.26 |
최빈값 구하기 (0) | 2023.06.24 |
숨어있는 숫자의 덧셈 (1) (0) | 2023.06.23 |
.cotains() & toLowerCase(); (0) | 2023.06.20 |