Create an application that calculates and displays the price of an order, based on the number of units ordered and the customer's status (either wholesaler or retailer).
The price per unit is as follows:
Wholesaler
Number of units Price per unit($)
1-8 $10
9 and over $9
Retailer
Number of units Price per unit($)
1-5 $15
6-9 $14
10 and over 12
Design appropriate interface.
Code the application.
Use "Select Case" statement to determine the customer's status.
Use "If..Then..Else" statement to determine the price per unit.