Home / Expert Answers / Computer Science / the-following-program-simulates-a-vending-machine-panel-the-program-gets-an-integer-that-represen-pa936

(Solved): The following program simulates a vending machine panel. The program gets an integer that represen ...



The following program simulates a vending machine panel. The program gets an integer that represents the users selected item

The following program simulates a vending machine panel. The program gets an integer that represents the user's selected item, and then outputs a dispensing message. Only 8 items are for purchase. Ex: The input 2 results in the message "Dispensing item 2". Arrange the following lines to handle two exceptions. If the user enters an item number that is not for purchase, the program throws an Exception with the message "Try again", outputs the exception message, and then tries again. If the user enters a noninteger input, the program throws an InputMismatchException, outputs "Fatal error", and then exits. Not all lines are used in the solution. Mouse: Drag/drop Keyboard: Grab/release Spacebar (or . Move \( 4 \rightarrow \). Cancel Esc VendingMachine.java Load default template... import java.util.Scanner; import java.util. InputMismatchException; public class VendingMachine \{ public static void main (String [] args) \{ Scanner scnr \( = \) new Scanner(System,in); int itemnumber \( =0 \); boolean askForInput = true; while (askForInput) \{ try \{ itemNumber \( = \) scnr \( \cdot \) nextInt(); if \( (( \) itemNumber \( <=0)|| \) (itemNumber \( >8) \) ) throw new Exception( "Try again"); 3 System.out.println( "Dispensing item " + iten askForInput = false;


We have an Answer from Expert

View Expert Answer

Expert Answer


so according to the problem , JAVA CODE : import java.util.*; public class VendingMachine { public static void main(Str
We have an Answer from Expert

Buy This Answer $5

Place Order

We Provide Services Across The Globe