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

Create a C++ executable program that does the following: San Jacinto College Sou

ID: 3652435 • Letter: C

Question

Create a C++ executable program that does the following:
San Jacinto College South is holding a fund-raiser. The Computer Science Dept., English Dept., Math Dept., and the Nursing Dept. will compete to see which department raises the most money.
Design a program that will allow the user to specify (prompt the user) which department to apply their contribution amount (i.e cs $100.00). Use a sential value to stop the program.
Display on the screen the total contribution made toward each department in ascending order.

Explanation / Answer

#include#include void main() { char choice; int depart; float amount,cseFund=0.0,mathFund=0.0,engFund=0.0,nurFund=0.0; do { clrscr(); cout