Java - 절대값 함수, Math.abs()

자바에서 절대값을 구하는 방법을 소개합니다. Math.abs() 함수를 이용하면 음수를 양수로 바꿀 수 있습니다.

Math.abs()으로 절대값 계산

Math.abs()는 인자로 입력된 수의 절대값을 리턴합니다.

예를 들어, -22를 인자로 전달하면 22를 리턴합니다.

int negative = -22;
int positive = Math.abs(negative);

System.out.println(positive);

Output:

22

double, long, float, int의 모든 자료형 지원

Math.abs()는 int 뿐만 아니라 float, long, double 등을 자료형에 모두 사용할 수 있습니다.

double negative = -22.02;
double positive = Math.abs(negative);

System.out.println(positive);

Output:

22.02

abs(positive)

Math.abs()에 양수를 전달하면 양수가 리턴됩니다.

int positive = 22;

System.out.println(Math.abs(positive));

Output:

22

References

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha