5-2 Stepping Stone Lab Four: LoopsSouthern New Hampshire University IT 511-Q2192: Object Oriented 02:03:00
... [Show More]
GMT -05:00package SteppingStone_Loop; import java.util.Scanner; import java.util.ArrayList;/**** @author Bryeshia Cooper*/public class SteppingStone_Loops {public static void main(String[] args) { Scanner scnr = new Scanner(System.in); String recipeName = "";ArrayList <String> ingredientList = new ArrayList(); String newIngredient = "";boolean addMoreIngredients = true;System.out.println("Please enter the name of your recipe: ");recipeName
[Show Less]