0
What is the Answers?
Define and initialize two variables, unit price and quantity, to contain the unit price of a single bottle and the number of bottles purchased. Use reasonable initial values
2 Réponses
+ 7
float unit_price = 0;
int quantity = 0;
- 1
thank you