Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

/* ----------------------------------------------------------- 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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Datacasting How To Stream Databases Over The Internet

Authors: Jessica Keyes

1st Edition

007034678X, 978-0070346789

More Books

Students also viewed these Databases questions