I'm somewhat new to programming and have been assigned to see how many chocolate bars it would take to eat in order to gain a pound. Assuming that the chocolate bar has 230 calories.
The BMR for men is 66 + (6.23 * weight) + (12.7 * height) - (6.8 * age);
and for women is 655 + (4.35 * weight) + (4.7 * height) - (4.7 * age);
Im just confused as the output I get doesn't really show how many chocolate bars it would take to gain 1 pound. Am I missing something important?