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 #include using namespace std;

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!