Write a program to do the following being sure to use formatting to line up columns:
A. Display the menu
1. Burger Meal Hamburger, Fries and a Drink $4.69
2. Cheeseburger Meal Cheeseburger, Fries and a Drink $5.19
3. Chicken Nugget Meal 5 Chicken Nuggets, Fries and a Drink $4.79
4. Order Complete
B. Use a loop to prompt the user to enter their selection. The loop will allow the user to add to the order until they enter a selection of 4. Keep a running total of the order.
C. Add the tax to the order using a taxRate of 6% (0.06)
D. After the user has finished ordering, prompt them with the total . Be sure to format it to show to two decimal places.
E. Prompt the user to enter a payment amount (an amount over the total i.e. if the total is $15.55, they could be paying with a $20 bill).
F. Determine the change broken down to the type of bills and/or coins (hint use the % operator) and display the amount of change i.e. for the order of $15.55 is:
4 one dollar bills
1 quarter
2 dimes
i can start off the program just fine but i cant figure out the rest because i missed 4 days of class due to a funeral. please someone help