Quiz) 절댓값 구하기
🔓 절댓값 구하기
- Main Class
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("x의 값을 입력하세요 : ");
double x = scanner.nextDouble();
scanner.close();
Absolute absolute = new Absolute(x);
absolute.mtd_Abs();
}
}
- Custom Class
public class Absolute {
private double x;
public Absolute(double x) {
this.x = x;
};
public void mtd_Abs() {
//2곱하기 x의 3제곱 표기 : 2*x^3
double res = 2 * Math.pow(this.x, 3) + 3 * Math.pow(this.x, 2) + 4;
res = Math.abs(res);
System.out.printf("res : %.2f", res);
}
}
📌 Math.abs(); : 절대값 반환
Author And Source
이 문제에 관하여(Quiz) 절댓값 구하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@losuif/Quiz-bjzrnd27저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)