Question
/* ----------------------------------------------------------- Write a program [1 mark] ----------------------------------------------------------- Write the missing code to make the program runs correctly. Use the prices below: banana - $2.50
/* ----------------------------------------------------------- Write a program [1 mark] -----------------------------------------------------------
Write the missing code to make the program runs correctly. Use the prices below: banana - $2.50 pear - $4.90 orange - $1.30
The program prompts the user to enter the quantity of fruits to purchase. It then calculate the total amount to pay.
========================== Sample Run: Amount of banana: 10 Amount of pear: 10 Amount of orange: 10
The amount is $87.00 ========================== Sample Run: Amount of banana: 1 Amount of pear: 2 Amount of orange: 3
The amount is $16.20 ========================== ---------------------------------------------------------------*/
// Do not change any code except where it is indicated. #include
int main() { int banana; int pear; int orange; double amount;
cout << "Amount of banana: "; cin >> banana; cout << "Amount of pear: "; cin >> pear; cout << "Amount of orange: "; cin >> orange;
// Begin your answer here: amount = ; // End your answer here.
cout << " The amount is $" << amount << endl << endl;
return 0; }
Write a program in C++
Please solve this question
Thankyou In advance
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started