Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

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

ID: 671131 • Letter: C

Question

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

Explanation / Answer

else if(usrInput == ADD_DIME)
{
totalDeposit = totalDeposit + 10;
}
else if(usrInput == ADD_NICKEL)
{
totalDeposit = totalDeposit + 5;
}

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote