Question

Complete the code provided to add the appropriate amount to totalDeposit. #include <iostream> using namespace std;...

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

0 0
Add a comment Improve this question Transcribed image text
✔ Recommended Answer
Answer #2

else if(usrInput == ADD_DIME){

  totalDeposit = totalDeposit+10;

}

else if(usrInput == ADD_NICKLE){

  totalDeposit = totalDeposit+5;

}


answered by: codegates
Add a comment
Answer #1

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

Add a comment
Know the answer?
Add Answer to:
Complete the code provided to add the appropriate amount to totalDeposit. #include <iostream> using namespace std;...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT