Page 1 of 1

note* please solve it as a beginner student level not a proffesional programmer

Posted: Fri Jun 10, 2022 11:56 am
by correctanswer
note* please solve it as a beginner student level not a proffesional programmer
Note Please Solve It As A Beginner Student Level Not A Proffesional Programmer 1
Note Please Solve It As A Beginner Student Level Not A Proffesional Programmer 1 (37.43 KiB) Viewed 66 times
Task 1: How Many Calories? A bag of cookies holds 30 cookies. The calorie information on the bag claims there are 10 "servings" in the bag and that a serving equals 300 calories. Write a program that asks the user co input how many cookies he or she actually are, then reports how many total calories were consumed. you must know the following facts: • To Calculate the number of cookies in a serving: cookiesPerServing = Cookies_Per_Bag / Num_Servings; • To Calculate the number of calories in a cookie. caloriesPerCookie = calories_per_serving/cookiesPerServing; • To Calculate the total calories consumed. totalCalories = caloriespercookie * numCookies;