-Code
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int d = sc.nextInt();
int h = sc.nextInt();
int w = sc.nextInt();
double result = d / Math.sqrt((Math.pow(h, 2) + Math.pow(w, 2)));
System.out.println((int) (result * h) + " " + (int) (result * w));
}
}
'Beakjoon&프로그래머스 > Java' 카테고리의 다른 글
[백준/Java] 1712번 손익분기점 (0) | 2022.04.15 |
---|---|
[백준/Java] 1330번 두 수 비교하기 (0) | 2022.04.15 |
[백준/Java] 1008번 A/B (0) | 2022.04.15 |
[백준/Java] 24900번 한별 찍기 (0) | 2022.04.15 |
[백준/Java] 24736번 Football Scoring (0) | 2022.04.15 |