Question
Write down Java-like pseudocode to specify the logic for following program application-
write down an application for a furniture company. The program determines price of a table. Ask the user to choose 1 for pine, 2 for oak, or 3 for mahogany. The output is the name of wood chosen as well as price of the table. Pine tables price $100, oak tables cost $225, and mahogany tables cost $310. If the user enters an invalid wood code, set the price to 0.
Contain a prompt in the application to ask the user to specify a (1) large table or a (2) small table, but only if wood selection is valid. Add $35 to the price of any large table, and add nothing to price for a small table. Show an appropriate message if the size value is invalid, and assumes the price is for a small table.