🍅 실제 사용 형식
className.methodName(variableName)
올림
Math.ceil(double a)
: return double
내림
Math.floor(double a)
: return double
반올림
Math.round(double a)
: return long
Math.round(float a)
: return int
몫
Math.floorDiv(int x, int y)
: return int
Math.floorDiv(long x, long y)
: return long
나머지
Math.floorMod(int x, int y)
: return int
Math.floorMod(long x, long y)
: return long
절대값
Math.abs(double a)
: return double
Math.abs(float a)
: return float
Math.abs(int a)
: return int
Math.abs(long a)
: return long
🥕 출처
https://docs.oracle.com/javase/8/docs/api/java/lang/Math.html
'Java' 카테고리의 다른 글
[spring boot] 스프링부트 프로젝트 생성 : hello world (0) | 2021.10.03 |
---|---|
[java] 자바에서 \ 기호 사용 방법 (0) | 2021.06.21 |
[java] 자바 프로젝트 import 하는 방법(eclipse&sts) : zip / folder (0) | 2021.03.29 |
Uploaded by Notion2Tistory v1.1.0