Write Java program that converts Pounds to Kilograms. The program prompts the user to enter Two numbers (Weight and Height): - The Weight will be entered in Pounds, and the Height in cm. - The program converts the Weight to Kilograms (Kg) . NOTE: [ 1 Pound = 0.453592 KG ] - The program checks if the user’s weight is normal according to the followingconditions: - If the Weight is greater than 100 Kg and the Height is less than 160 cm, display this message on the screen “You are Overweight!!”. - If the Weight is less than 40 Kg and the Height is greater than or equal to 160 cm, display this message on the screen “You are underweight !!”. - Otherwise, display this message on the screen “Your weight is normal”.
Write Java
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 3 images