Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a complete C++ program that takes the users' weight and their lifestyle as an input and recommends the number of calories they should
Write a complete C++ program that takes the users' weight and their lifestyle as an input and recommends the number of calories they should take per day. Your program needs to take users' weight as an integer value and their lifestyle as a character that shows if they are active (a) or sedentary (inactive) (s). Your program then calculates the number of calories by multiplying the users' weight with the activity factor. If the person is sedentary, that person's activity factor is 13. If the person is active, that person's activity factor is 15. Sample Run Please enter your weight: 60 Do you have an active (a) or sedentary (s) lifestyle? s The recommended number of calories: 780
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Heres a C program that implements the functionality you described include iostream int main ...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Document Format ( 2 attachments)
6642f754ef403_969837.pdf
180 KBs PDF File
6642f754ef403_969837.docx
120 KBs Word File
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started