Ask Question
16 June, 23:39

In pseudocode how can I calcute fat gram?

+2
Answers (1)
  1. 17 June, 00:40
    0
    Answer:Design a program that asks the user 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 are not less than 0.

    According to nutritional formulas, the number of calories cannot exceed fat grams * 9. Make sure that the number of calories entered is not greater than fat grams * 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:

    Percentage of calories from fat = (Fat grams * 9) / Calories

    Some nutritionists classify food as " low fat" if less than 30percent 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.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “In pseudocode how can I calcute fat gram? ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers