Gregory Desrosiers Montreal

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Sunday, 18 November 2012

Java Program : Fat Gram Calculator

Posted on 18:06 by Unknown
Here's another program I want to share with you guys, which is simply a program that multiplies the number of grams of fat in food by nine, which gives off how many calories you earn upon eating a serving of that snack or provision. You need to enter the number of calories in the actual serving in that calculator and the number of grams of fat, and what will do is it will calculate the percentage and determine whether the food has a high amount of fat, at least 30%, or not.

This time, there are no notes taken on how this works.

import javax.swing.JOptionPane;
import java.text.DecimalFormat;

public class FatGramCalculator
{
    public static void main(String[] args)
    {
        String inputString;
        float totalCalories,
            fatGrams,
            caloriesFromFat,
            ratio,
            percent;
       
        DecimalFormat formatter = new DecimalFormat("##");
       
        inputString =
                JOptionPane.showInputDialog("How many calories are in the food item you want to study?");
        totalCalories = Float.parseFloat(inputString);
       
        inputString =
                JOptionPane.showInputDialog("How much fat is in the food item, in grams?");
        fatGrams = Float.parseFloat(inputString);
       
        caloriesFromFat = fatGrams * 9;
       
        ratio = caloriesFromFat / totalCalories;
       
        percent = ratio * 100;
       
        if (percent > 100)
            JOptionPane.showMessageDialog(null, "Invalid entry.");
       
        if (percent <= 100)
            JOptionPane.showMessageDialog(null, "Number of calories in food item: " + totalCalories +
                                        "\nNumber of grams of fat in food item: " + fatGrams +
                                        "\n\nPercent of calories of fat to total calories: " +
                                        (formatter.format(percent)) + "%");
       
        if (percent < 30)
            JOptionPane.showMessageDialog(null, "The food item is low in fat.");
       
        System.exit(0);
           
    }
}
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Posted in | No comments
Newer Post Older Post Home

0 comments:

Post a Comment

Subscribe to: Post Comments (Atom)

Popular Posts

  • The Quebec Ministerial Exam of College English (English Exit Exam)
    Hello, everyone. How you doing? I'm good. There is some unfortunate news for me to deliver, though I am planning to try to work myself a...
  • DOS Games to Play
    Hello, people. If there's one thing that I want to do when I have lots of money, it's to play full version DOS Games on my Windows P...
  • JAVA Program: Military Time to Real Time
    Hello, people. How you doing? I'm really busy with my college homework, but I am working so hard to pass my courses and continue in my s...
  • Computer Game Collection
    Hello, people! Before I happen to leave this very foundation of Champlain College Saint-Lambert (that's where I'm learning to get wh...
  • Java Program : Fat Gram Calculator
    Here's another program I want to share with you guys, which is simply a program that multiplies the number of grams of fat in food by ni...
  • Best VGM Series
    Hello, guys. I want to present to you a series of YouTube imports of video game music, with some of them already recorded but in a form that...
  • Java Programming : For Loop Example
    Here's an example of using a for loop in JAVA. This program uses a loop inside another to create a list of integers where the number on ...
  • Super Mario Script 1 (v 2.3) [Super Mario Galaxy font, with a few photos]
    Hello there. Do you recognize the font of this text? I'll give you two clues. The one below is the a sample sentence of different sizes....
  • JAVA Program: Lottery Class
    Here's a nother JAVA Program I want to share with you guys , which is a demonst ratio n of the Lottery class I w as as ked to design fro...
  • List of Played N64 Games
    Hello, guys. Let me introduce to you a list of N64 games I have played when I was young; the N64 was one of the two consoles I had, besides ...

Blog Archive

  • ►  2013 (38)
    • ►  August (2)
    • ►  July (9)
    • ►  June (12)
    • ►  May (12)
    • ►  April (2)
    • ►  January (1)
  • ▼  2012 (24)
    • ►  December (13)
    • ▼  November (3)
      • Java Programming : For Loop Example
      • Java Program : Fat Gram Calculator
      • JAVA Program: Military Time to Real Time
    • ►  October (5)
    • ►  September (1)
    • ►  August (2)
Powered by Blogger.

About Me

Unknown
View my complete profile