subject

In C coding, complete the code provided to add the appropriate amount to totalDeposit. #include

int main(void) {
enum AcceptedCoins {ADD_QUARTER, ADD_DIME, ADD_NICKEL, ADD_UNKNOWN};
int totalDeposit = 0;
int userInput;

printf("Add coin: 0 (add 25), 1 (add 10), 2 (add 5). ");
scanf("%d", &userInput);

if (userInput == ADD_QUARTER) {
totalDeposit = totalDeposit + 25;
}

/* Your solution goes here */

else {
printf("Invalid coin selection.\n");
}

printf("totalDeposit: %d\n", totalDeposit);

return 0;
}
Sorry in advance, my professor is a bit hard to understand so I'm trying to figure this out a bit still. Would like a walkthrough on it if possible.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 22:30
What are compression artifacts? 1) visible defects in the picture caused by the nature of the compression algorithm. 2) numbers that tell a web server how much to compress a picture for faster transmission. 3) invisible defects in the picture preserved by lossless compression. 4) numbers that tell a photo editing program how much to compress a picture for faster transmission.
Answers: 3
question
Computers and Technology, 23.06.2019 18:00
Ramona enjoys her job because she is able to kids in an after school program. the work value ramona feels strongest about is a. leadership b. risk c. independence d. work with people select the best answer from the choices provided a b c d
Answers: 1
question
Computers and Technology, 24.06.2019 13:00
George heard about the benefits of a data warehouse. he wants to try implementing one for his organization. however, he is afraid that transferring data to the data warehouse will affect transaction time. which element ensures that transactions are not affected when moving data to a warehouse? when data is transferred to a data warehouse, the a area frees the source system to continue transaction processing.
Answers: 2
question
Computers and Technology, 24.06.2019 17:30
When you type january in a cell, then copy it using the fill handle to the cells below and the data automatically changes to february, march, april, and so on, what is this feature called? auto fill automaticcopy monthfill textfill
Answers: 1
You know the right answer?
In C coding, complete the code provided to add the appropriate amount to totalDeposit. #include
Questions
question
Mathematics, 15.04.2020 00:39
Questions on the website: 13722365