Question1 (50 pts)
Summer 2022
Write a program that prompts the user to enter his name, his weight, his height, and his age.
Then your program must compute how many calories the user should eat per day according
to the following formula:
numberOfCaloriesPerDay= 88.362 + (13.397 x weight) + (4.799 x height) - (5.677 x age)
The program should also display the number of calories that the user can eat per week, and
all the information needed as shown in the sample run below (print only three numbers
after the decimal point, example :422.923)
Sample run:
Enter user's name: Fred
Enter the user weight, height, and age: 80 170 25
Name (weight, height) Calories Per Day Calories Per Week
Fred (80.0,170.0) 1834.027 12838.189