Bid Tool

Good afternoon guys. I'm on working on an assignment about pointers and dynamic memory.
This is what I'm asked to do:

You have been asked to write a data analysis tool for the company LLC
a.k.a, Y.E.A.H, which is a competitor to eBay. Y.E.A.H wants to give its users the ability to find out
information about all the bids made on an item. After talking to the users, Y.E.A.H. wants to display the
following information:
• The highest bid
• The average bid
• The total of all bids
• All the bids in sorted order.

There's a function for everything. I would post the whole assignment, but it's pretty long.

Your output should look similar to the following. Things in bold are typed by the user.
--------------------------------------
------- The Y.E.A.H. Bid Tool --------
----- Developed by vremia2 ----
Enter a product name or DONE: Screwdriver
How many bids for the Screwdriver? 5
Please enter bid #1: 3.45
Please enter bid #2: .01
Please enter bid #3: -99
WARNING: Number must larger than $0.00
Please enter bid #3: 99
Please enter bid #4: 345.67
Please enter bid #5: 20.59
--------------------------
BID REPORT
Product: Screwdriver
Bids
----
Bid #1: 0.01
Bid #2: 3.00
Bid #3: 20.59
Bid #4: 99.00
Bid #5: 345.00
Bid Stats
---------
Highest bid: 345.00
Average bid: 93.52
Total of all bids: 467.60
--------------------------
Enter a product name or DONE: DONE

I will be posting my code soon :)
Topic archived. No new replies allowed.