You are going to create the Point of Sale software for a Pizza Parlor so that orders can be taken.
You have the option of choosing one of two case study options. The Game option will be more difficult to implement, but will be worth more towards your final grade.
Once you have chosen:
Aditional Info:
(number to format).toString('C') <--The 'C' here means currencyex: lblPrice.Text(45.666).toString('C') will show: $45.67ex: dblTotalPrice = 45.666 lblPrice.Text = dblTotalPrice.toString('C') will show: $45.67Math.Round(# to be rounded, # of decimal places) ex: lblAnswer.Text = Math.Round(45.666, 1) will show: 45.7ex: dblNumber = 45.666 lblAnswer.Text = Math.Round(dblNumber, 1) will show: 45.7