Quiz 1a - UMBC-CMSC104/General GitHub Wiki
You are to write a program that tells the user whether a meal falls within a user's desired caloric count. Calls this program quiz1a.c.
Example output:
Filet mignon is on the menu today.
What is your calorie limit for this meal?
The user will then be able to input a calorie value (a number):
Filet mignon is on the menu today.
What is your calorie limit for this meal? 900
The filet is 800 calories. Bon appetit!
If the user inputs a value less than 800:
Filet mignon is on the menu today.
What is your calorie limit for this meal? 600
The filet is 800 calories. This is too much for you!
You must use a function for calorie input and display.
To submit:
submit cs104_wilson quiz1 quiz1a.c