Time Limit: 1s
Memory Limit: 128MB
Body Mass Index (BMI)는 몸무게를 기반으로 하는 건강 측성 수치입니다. BMI를 측정하는 방법은 당신의 몸무게(kg)을 키(m)의 제곱으로 나누면 됩니다. 몸무게 W(pounds)와 키 H(inches)를 입력으로 받아 BMI를 구하는 프로그램을 작성하세요. 1 pound는 0.45359237 kg이고 1 inch는 0.0254 meters 입니다.
Body Mass Index (BMI) is a measure of health on weight. It can be calculated by taking your weight in kilograms and dividing by the square of your height in meters. Write a program that prompts the user to enter a weight W in pounds and height H in inches and displays the BMI. Note that one pound is 0.45359237 kilograms and one inch is 0.0254 meters.
* Line 1 : 실수 W (50~200)
* Line 2 : 실수 H (10~100)
* Line 1 : 실수 BMI (소수점 둘째자리 아래는 버림, 예: 11.213의 경우 11.21로 출력, 11.20의 경우 11.20로 출력)
95.5 50
26.85
소수점 한자리까지 출력 System.out.printf("%.1f\n", 0.6789);
JAVA2015 PE2.14