Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Looking for code to adapt ingredient java file to include data-type validation steps for each of the variables in the class: ingredientName (String) ingredientAmount (float)

Looking for code to adapt 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

current Ingredient java file below

package SteppingStones;

import java.util.Scanner;

public class ingredient {

String nameOfIngredient = ""; String unitMeasurement = ""; String ingredientAmount = ""; int numberCups = 0; int numberOfCaloriesPerUnit = 0; double totalCalories = 0.0f;

public static void main(String[] args) { ingredient calculator = new ingredient(); calculator.calculateCalories(); }

public void calculateCalories() { Scanner scnr = new Scanner(System.in);

System.out.println("Please enter the name of the ingredient: "); nameOfIngredient = scnr.next(); System.out.println("Please Enter Unit of Measurement for this Ingredinet: "); unitMeasurement = scnr.next(); System.out.println("Please enter the ingredient Amount" + ingredientAmount + " we'll need: "); numberCups = scnr.nextInt();

System.out.println("Please enter number of calories per unit"); numberOfCaloriesPerUnit = scnr.nextInt(); System.out.println(nameOfIngredient + " uses " + ingredientAmount + " number of " + unitMeasurement + "'s" + " which contains " + totalCalories + " total calories."); } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Database Management

Authors: Jeff Hoffer, Ramesh Venkataraman, Heikki Topi

13th Edition Global Edition

1292263350, 978-1292263359

More Books

Students also viewed these Databases questions

Question

How do books become world of wonder?

Answered: 1 week ago

Question

What is Change Control and how does it operate?

Answered: 1 week ago

Question

How do Data Requirements relate to Functional Requirements?

Answered: 1 week ago