Question: Adapt your Ingredient Java file to include data-type-validation steps for each of the variables in the class: ingredientName (String) ingredientAmount (float) unitMeasurement (String) Number of

Adapt your Ingredient Java file to include data-type-validation steps for each of the variables in the class:

ingredientName (String)

ingredientAmount (float)

unitMeasurement (String)

Number of calories (double)

Ingredient Java file

package SteppingStones;

import java.util.Scanner;

/** * * @author

*/ public class SteppingStone2_IngredientCalculator {

/**

* @param args the command line arguments

*/ public static void main(String[] args) {

/**

*Assign the following variables with the appropriate data type and value:

*VARIABLE NAME VALUE

*nameOfIngredient ""

*numberCups 0

*numberCaloriesPerCup 0

*totalCalories 0.0

*/

Scanner scnr = new Scanner(System.in);

System.out.println("Please enter the name of the ingredient: ");

nameOfIngredient = scnr.next();

System.out.println("Please enter the number of cups of " + nameOfIngredient + " we'll need: ");

numberCups = scnr.nextFloat();

System.out.println("Please enter the name of calories per cup: ");

numberCaloriesPerCup = scnr.nextInt(); /*

* * Write an expression that multiplies the number of cups

* by the Calories per cup.

* Assign this value to totalCalories

*/

System.out.println(nameOfIngredient + " uses " + numberCups + " cups and has " + totalCalories + " calories.");

}

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!