Bistro Demo

The following text was written to the standard output stream when the Bistro program was executed from Netbeans.

Bistro.java

run:
Welcome to Bistro !
>>> help
MENU -- Display the Bistro menu
ORDER -- Order items from the menu
EXIT -- Exit the application
HELP -- Display all available commands
>>> menu
OYSTERS --> 3.0
FRIES --> 5.0
MEATBALLS --> 8.0
SALAD --> 5.0
BURGER --> 10.0
RIBS --> 18.0
STEAK --> 20.0
MAC&CHEESE --> 9.0
BAGEL --> 3.0
CUPCAKE --> 3.0
TIRAMISU --> 5.5
SOUP --> 4.0
MILKSHAKE --> 4.0
COFFEE --> 2.5
SODA --> 1.5
>>> order
What do you want? pasta milkshake
Sorry, PASTA is not on our menu.
Cost = $4.0
Cost + Tax = $4.32
Cost + Tax + Tip = $4.968
>>> order
What do you want? steak cupcake soda
Cost = $24.5
Cost + Tax = $26.46
Cost + Tax + Tip = $30.429
>>> delivery
Sorry, the command you entered is not available. You can use the "HELP" command to see all commands available.
>>> exit
Thank you!
BUILD SUCCESSFUL (total time: 41 seconds)