Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C# Progrmming The body mass index (BMI) is a measure of relative weight based on height and weight. Write a program that calculates and prints

C# Progrmming

The body mass index (BMI) is a measure of relative weight based on height and weight.

Write a program that calculates and prints the BMI for a person; the program allows user to enter values for the name, weight and height of the person,

The formula for BMI is: BMI = (Weight in Pounds / (Height in inches) 2) * 703

Write the following 5 methods: input(3), calculation(1) and display(1).

1.Input method prompts user to enter name of the person and returns name (a string).

2.Input methods (2) prompts user to enter weight in pounds, height in inches of the person and returns weight (a double) and height (a double).

3.Calculation method: parameters of calculation method are weight and height (doubles); the method calculates and returns the BMI corresponding to its input parameters.

4.Display method: print out name, weight, height and BMI of the person showing 2 places behind the decimal point for every double value.

Your Main() will call the input, calculation and display method.

Evaluation

1.Input Method for name exists and returns a string value 10 points

2.Weight and Height Input Methods exist and return double values 20 points

3.Calculation Method exists, has appropriate input parameters and returns a double value 10 points

4.Display Method exists and displays appropriate name, height, weight and BMI values 20 points

5.Proper Main() method, calls the appropriate methods 10 points.

6.BMI calculation is correct 10 points.

7.Output formatting is correct 10 points.

8.Comments 10 points.

PLEASE USE THE VISUAL STUDIO 2017 TO MAKE IT EASIER AND FOLLOW ALL THE INSTUCTIONS

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Write a program to check an input year is leap or not.

Answered: 1 week ago

Question

Write short notes on departmentation.

Answered: 1 week ago

Question

What are the factors affecting organisation structure?

Answered: 1 week ago

Question

What are the features of Management?

Answered: 1 week ago

Question

Briefly explain the advantages of 'Management by Objectives'

Answered: 1 week ago