Write a C++ program that creates an invoice for a small fruit vendor named “Bob’s Fruits”. The fruit vendor sells three kinds of fruit: oranges, apples, and bananas. Oranges cost .90 each, apples cost .65 each and bananas cost .70 each. For each type of fruit the program should ask the user how many of this type of fruit they would like to purchase (zero is an acceptable answer). After obtaining the purchase information from the user display an invoice on the screen similar to this:
BOB'S FRUITS GROCERY INVOICE
-----------------------------------------------
20 Apples @ 0.65 each = $ 13.00
20 Oranges @ 0.90 each = $ 18.00
20 Bananas @ 0.70 each = $ 14.00
-----------
TOTAL = $ 45.00
This invoice is an example of the case where a user buys 20 oranges, 20 apples and 20 bananas. Make sure and use symbolic constants where appropriate in your program and make sure to format your numeric output.
will someone help please