Fill This Form To Receive Instant Help

Help in Homework
trustpilot ratings
google ratings


Homework answers / question archive / Complete the code provided to add the appropriate amount to totalDeposit

Complete the code provided to add the appropriate amount to totalDeposit

Computer Science

Complete the code provided to add the appropriate amount to totalDeposit.

#include <iostream>

using namespace std;

int main() {

enum AcceptedCoins {ADD_QUARTER, ADD_DIME, ADD_NICKEL, ADD_UNKNOWN};

AcceptedCoins amountDeposited = ADD_UNKNOWN;

int totalDeposit = 0;

int usrInput = 0;

cout << "Add coin: 0 (add 25), 1 (add 10), 2 (add 5). ";

cin >> usrInput;

if (usrInput == ADD_QUARTER) {

totalDeposit = totalDeposit + 25;

}

/* Your solution goes here */

else {

cout << "Invalid coin selection." << endl;

}

cout << "totalDeposit: " << totalDeposit << endl;

return 0;

}

Note - I only need the part where it says -- your solution goes here. Thank you very much for the help. C++ program

Option 1

Low Cost Option
Download this past answer in few clicks

2.85 USD

PURCHASE SOLUTION

Already member?


Option 2

Custom new solution created by our subject matter experts

GET A QUOTE