Computers and Technology
Computers and Technology, 07.10.2019 17:30, pookie879

Create a console program where you will implement variables that are needed for this program and will implement the code entirely within main. prompt the user for contributions. it should first ask for the contributor's grade. then it should ask how much the student is contributing. these prompts should be placed inside of a loop so that the program will continue to ask for contributions until a value of 999 is entered for the contributor's grade. once that value is entered, the program should calculate the average value of the contributions. display the results, with a congratulatory message for the class which collected the largest amount. use a boolean variable to control the while loop. use a switch statement to get the input into the proper variables. place the switch statement within the while loop and use the boolean variable to control the loop and set its value to false when the sentinel value (999) is detected. when calculating the averages you will need a selection statement for each grade contribution to either compute the individual grade contribution average or to set it to zero if there were no contributions for that grade.

answer
Answers: 1

Similar questions

Предмет
Computers and Technology, 01.10.2019 03:30, yuppcami9929
This program will store roster and rating information for a basketball team. coaches rate players during tryouts to ensure a balanced team. a roster can include at most 10 players. (1) prompt the user to input five pairs of numbers: a player's jersey number (0 - 99) and the player's rating (1 - 9). store the jersey numbers in one int array and the ratings in another int array. output these arrays (i.e., output the roster). ex: (2) implement a menu of options for a user to modify the roster. each option is represented by a single character. the program initially outputs the menu, and outputs the menu after a user chooses an option. the program ends when the user chooses the option to quit. ex: (3) implement the "output roster" menu option. ex: (4) implement the "add player" menu option. if the user chooses this option and the roster is full, print the following error message: if the roster is not full, prompt the user for a new player's jersey number and rating, and append the values to the two arrays. ex: (5) implement the "delete player" menu option. if the user chooses the option when the roster is empty, immediately print the message: if the roster is not empty, prompt the user for a player's jersey number. remove the player from the roster (delete the jersey number and rating), paying attention not to leave unused spaces in the two arrays. ex: if the given jersey number is not found, inform the user: (6) implement the "update player rating" menu option. prompt the user for a player's jersey number. prompt again for a new rating for the player, and then look up and change that player's rating. ex: in this case, if the given jersey number is not found, no further action is taken (note that the format of the program requires both input either way). (7) implement the "output players above a rating" menu option. prompt the user for a rating. print the jersey number and rating for all players with ratings above the entered value. ex: if no players are found above a given rating, the program will simply produce an empty list. bonus for an extra 10 points, implement a secret option s that prints the message: and sorts the roster by jersey number. do not add this option to the menu message. and remember to move the player rating accordingly! i need with my hw its in c++. it also asking for an input.
Answers: 3
Do you know the correct answer?
Create a console program where you will implement variables that are needed for this program and wil...

Questions in other subjects:

Konu
English, 05.02.2021 02:10
Konu
Health, 05.02.2021 02:10
Konu
Mathematics, 05.02.2021 02:20