PYTHON LANGUAGE Design a program that asks for the number of fat grams and calories in a food item. Validate the input as follows: Make sure the number of fat grams and calories is not less than 0. According to nutritional formulas, the number of calories cannot exceed fatGrams×9. Make sure that the number of calories entered is not greater than fatGrams×9 Once correct data has been entered, the program should calculate and display the percentage of calories that come from fat. Use the following formula: Percentageofcaloriesfromfat=(Fatgrams×9)÷Calories Some nutritionists classify a food as “low fat” if less than 30 percent of its calories come from fat. If the results of this formula are less than 0.3, the program should display a message indicating the food is low in fat
Addition of Two Numbers
Adding two numbers in programming is essentially the same as adding two numbers in general arithmetic. A significant difference is that in programming, you need to pay attention to the data type of the variable that will hold the sum of two numbers.
C++
C++ is a general-purpose hybrid language, which supports both OOPs and procedural language designed and developed by Bjarne Stroustrup. It began in 1979 as “C with Classes” at Bell Labs and first appeared in the year 1985 as C++. It is the superset of C programming language, because it uses most of the C code syntax. Due to its hybrid functionality, it used to develop embedded systems, operating systems, web browser, GUI and video games.
PYTHON LANGUAGE
Design a
Make sure the number of fat grams and calories is not less than 0.
According to nutritional formulas, the number of calories cannot exceed fatGrams×9. Make sure that the
number of calories entered is not greater than fatGrams×9
Once correct data has been entered, the program should calculate and display the percentage of calories that
come from fat. Use the following formula:
Percentageofcaloriesfromfat=(Fatgrams×9)÷Calories
Some nutritionists classify a food as “low fat” if less than 30 percent of its calories come from fat. If the results
of this formula are less than 0.3, the program should display a message indicating the food is low in fat
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 3 images