Question: Write a program in C + + to solve the following problem: A user wishes to create a program that will display personal information they

Write a program in C++ to solve the following problem:
A user wishes to create a program that will display personal information they provide after performing some calculations. The program will consist of the following data:
- Name
- Major
- Height (in inches)
- Weight
- Courses Taken
- Courses Remaining
Using this data, the user will display the following information:
- Name
- Major
- Height (includes feet and inches)
- BMI (Formula: \(703^{\text {*}}\) weight /(height * height))- Round to 2 decimal places
- Course Completion Percentage - Round to 0 decimal places
-(Formula: Courses Taken /(Courses Remaining + Courses Taken)*100)
Sample Output
Enter your name: Bob Jones
Enter your major: Computer Science
Enter your height: 78
Enter your weight: 205
Enter courses taken: 5
Enter courses remaining: 21
PERSONAL INFORMATION
Name: Bob Jones
Major: Computer Science
Height: 6'6
BMI: 23.69
Course Completion Percentage: 19\%
Write a program in C + + to solve the following

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!