beginner

pls help me with this output i dont know what to do :(
using c++ codes only here's the output .
super thank you to those who will hwlp :)
--------------------------------------------------------
Welcome to the Grocery Shop 3.0! Where 3.0 is enough!

Enter cashier's name: sheena Mendez //user input
Enter current date: 11/23/15 //user input

Hello !

Enter 3 grocery entries:

******* Grocery Entry #1 *******
Item Name: Yakult //user input
Price: 12.50 //user input
12% VAT: 1.50
Final Price: 14.00
Quantity: 5 //user input
Total Price: 70.00
********************************

******* Grocery Entry #2 *******
Item Name: Dutch Mill //user input
Price: 15.50 //user input
12% VAT: 1.86
Final Price: 17.36
Quantity: 3 //user input
Total Price: 52.08
********************************

******* Grocery Entry #3 *******
Item Name: Chuckie //user input
Price: 15.50 //user input
12% VAT: 1.86
Final Price: 17.36
Quantity: 3 //user input
Total Price: 52.08
********************************
Grand Total: 174.16
Amount Received: 200.00 //user input
Change: 25.84

********** Official Receipt ****************
Date: 11/23/15
Cashier: Michael Gwapo Super

Item Name Price Qty Total
#1 Yakult 14.00 5 70.00
#2 Dutch Mill 17.36 3 52.08
#3 Chuckie 17.36 3 52.08

Grand Total 174.16
Amount Received 200.00
Change 25.84
***************** E N D ********************
Last edited on
This is the broadest question I had seen so far. This is not a homework site. However, we will help you based on the effort you put into it.

What are the specifications of the program?
What have you code so far?
Is the program supposed to be using the OOP or procedural method?
Does the program needs to valid for wrong input from the user (i.e. negative number)?
Is there a limits on the characters for the name, or not (char vs. strings)?

What I am trying to say is that your question creates more questions. Please, take a look at this link to give you an idea on how to ask the question.

http://www.cplusplus.com/forum/articles/40071/#msg218019

Topic archived. No new replies allowed.