BMR calculator. need revision

1. Write a C++ program to calculate Basal Metabolic Rate and total calorie needs. Use the Harris Benedict equation to calculate calorie needs.
2. The program must use at least three functions or procedures.
3. (See the additional handouts for BMR and Total Calories)
4. The input to the program will be the weight in pounds, the height in inches, the age, and the character 'm' for male and 'f' for female. Read the input data in a procedure using call by reference.
5. The output of the program will be the BMR and Total Calories Needs for each data set. The program must use an end-of-file loop to get credit. Also, echo print the input data for each data set. Write the information in formatted columns with heads.

INPUT:
(FIle included)

OUTPUT:
it looks exactly like the input


Step 1: calculating the BMR

BMR calculation for men : BMR = 66.5 + ( 13.75 x weight in kg ) + ( 5.003 x height in cm ) - ( 6.755 x age in years )
BMR calculation for men : BMR = 66 + ( 6.23 x weight in pounds ) + < 12.7 x height in inches ) - ( 6.76 x age in years )
BMR calculation for women : BMR = 665.1 + ( 9.563 x weight in kg ) + ( 1.850 x height in cm ) - ( 4.676 x age in years )
BMR calculation for women : BMR = 655 + ( 4.35 x weight in pounds ) + ( 4.7 x height in inches ) - (4.7 x age in years )

Step 2: applying the Harris-Benedict Principle

Little to no exercise ------------------------------------------------------------------- Daily calories needed = BMR x 1.2
Light exercise (1-3 days per week)------------------------------------------------- Daily calories needed = BMR x 1.375
Moderate exercise ( 3-5 days per week )------------------------------------------- Daily calories needed = BMR x 1.55
Heavy exercise ( 6-7 days per week ) ----------------------------------------------- Daily calories needed = BMR x 1.725
Very heavy exercise ( twice per day, extra heavy workouts ) -------------------- Daily calories needed = BMR x 1.9

Applications for weight loss

Using the formulae above, a 24-year old, 80 kg male who is 180 cm would have a BMR of 1900. If he exercised moderately, he would multiply his BMR
by his activity level (1900 x 1.55) to determine daily calorie requirements, which would be 2945 kcal per day to keep his weight at 80 kg. This may seem like a high calorie intake, but his activity level requires it. This individual would exercise normally but not lose weight. The same individual without the exercise routine would only be able to consume 2273 kcal per day without gaining weight. The US Department of Health and Human Services Daily Value Guidelines provides figures that support the above example.

Using the Harris-Benedict Equation, individuals can take a mathematical approach to weight loss. There are 3500 calories in 1lb (0..45) of body fat. Using the Harris-Benedict Principle, if someone has a daily allowance of 2500 calories, but he reduces his intake to 2000, then they calculations show a 1 pound loss every 7 days.


this is what I have so far, please help me! :3

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#include <iostream>

using namespace std;

void male_function ();
void female_function ();

int main ()
{

int gender;

    cout << "\n\n";
    cout << "This program will calculate your Basal Metabolic Rate" << endl;
    cout << "Your BMR will tell you roughly how many calories" << endl;
    cout << "your body burns in a day without any additonal exercise" << endl;
    
    cout << "\n\n" << "Let's get started." << endl;
    cout << "\n\n" << "What is your gender? (1 for female, and 2 for male): ";
    cin >> gender;
    
    while (gender <=0 || gender >= 3)
          { 
                  cout << "\n\n" << "I'm sorry, you entered something other than 1 or 2." << endl;
                  cout << "\n\n" << "Please indicate if you are male or female." << endl;
                  cout << "by entering 1 for female or 2 for male: ";
                  cin >> gender;
                  
                  }
                  
if (gender == 1)
{
           female_function ();
}
else
{
           male_function ();
}

}

void female_function()
{
     const int g2SIZE = 7;
     char sex2 [g2SIZE] = "Female";
     
     cout << "\n\n";
     cout << "You have indicated that you are " << sex2 << endl; 
     cout << "\n\n";
     cout << "What is your height in inches? ";
     
     int height;
     cin >> height; //get height
     
         while (height < 50 || height > 96)
               {
                       cout << "\n\n";
                       cout << "You must be taller than 50 inches" << endl;
                       cout << "Please enter a height between 50 and 96" << endl;
                       cin >> height;

                       }
                       
cout << "Thank you." << endl;

//get weight

cout << "\n\n";
cout << "Now, how much do you weight in pounds? ";
int weight;
cin >> weight;

while (weight < 40 || weight > 450)
{
cout << "\n\n";
cout << "Please enter a weight more than 40 and 450" << endl;
cin >> weight;
}

cout << "Thank you" << endl;
cout << "\n\n";
cout << "Now how old are you (In Years): "; // get age
int age;
cin >> age;

while (age < 10 || age > 80)
      {
           cout << "\n\n";
           cout << "Im sorry, but this program is not accurate" << endl;
           cout << "Please enter an age beteeen 10 and 80" << endl;
           cin >> age;
           }

cout << "\n\nn" << "Calculating BMR..." << endl;
double bmr;
bmr = 655 + (4.35 * weight) + (4.7 * height) - (4.7 * age);
cout << "\n\n";
cout << "Your Basal Metabolic Rate is " << bmr << "." << endl;
cout << "\n" << "This is roughly the amount of calories your body will burn in a day" << endl;
cout << "without any additional exercise." << endl;

cout << "\n\n" << "Now that you know your Basal Metobolic Rate (BMR)" << endl;
cout << "Let's take a look at your AMR" << endl;
cout << "Your AMR is your BMR adjusted for your activity level. " << endl;

cout << "\n\n";
cout << "Please select your activity level; " << endl;
cout << "-----------------------------------" << endl;
cout << "1. Little to no exercise " << endl;
cout << "2. Light exercise (1-3 days per week) " << endl;
cout << "3. Moderate exercise ( 3-5 days per week) " << endl;
cout << "4. Heavy exercise ( 6-7 days per week ) " << endl;
cout << "5. Very heavy exercise (twice per day, extra heavy workouts) " << endl;
cout << "\n\n" << "Please enter the number to the left of your activity" ;

int selection;

if (selection == 1)
{
           amr = bmr * 1.2;
           cout << "\n\n";
           cout << "Your BMR is: " << bmr << endl;
           cout << "Your AMR is: " << amr << endl;
}

if (selection == 2)
{
           amr = bmr * 1.375;
           cout << "\n\n";
           cout << "Your BMR is: " << bmr << endl;
           cout << "Your AMR is: " << amr << endl;
}

if (selection == 3)
{
           amr = bmr * 1.55;
           cout << "\n\n";
           cout << "Your BMR is: " << bmr << endl;
           cout << "Your AMR is: " << amr << endl;
}

if (selection == 4)
{
           amr = bmr * 1.475;
           cout << "\n\n";
           cout << "Your BMR is: " << bmr << endl;
           cout << "Your AMR is: " << amr << endl;
}

if (selection == 5)
{
           amr = bmr * 1.9;
           cout << "\n\n";
           cout << "Your BMR is: " << bmr << endl;
           cout << "Your AMR is: " << amr << endl;
}

                  
                  
system ("pause");
return 0;
}
It'd help us to know what exactly you are having trouble with.

One thing I can see is that you haven't declared your amr variable. Just declare it like you did your bmr variable. You'll want to declare it before you do your if statements.

Also, you do not take the selection variable as an input. You'll need to use
 
cin >> selection;


Remove your system("pause"); function, and use something that isn't OS dependent, like getch();
You're a life saver!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
int selection;
cin>> selection;

if (selection == 1)
{
           amr = bmr * 1.2;
           cout << "\n\n";
           cout << "Your BMR is: " << bmr << endl;
           cout << "Your AMR is: " << amr << endl;
}

if (selection == 2)
{
           amr = bmr * 1.375;
           cout << "\n\n";
           cout << "Your BMR is: " << bmr << endl;
           cout << "Your AMR is: " << amr << endl;
}

if (selection == 3)
{
           amr = bmr * 1.55;
           cout << "\n\n";
           cout << "Your BMR is: " << bmr << endl;
           cout << "Your AMR is: " << amr << endl;
}

if (selection == 4)
{
           amr = bmr * 1.725;
           cout << "\n\n";
           cout << "Your BMR is: " << bmr << endl;
           cout << "Your AMR is: " << amr << endl;
}

if (selection == 5)
{
           amr = bmr * 1.9;
           cout << "\n\n";
           cout << "Your BMR is: " << bmr << endl;
           cout << "Your AMR is: " << amr << endl;
}


I just did this instead ^^^ and it worked.
Topic archived. No new replies allowed.