Question
C++ Doc Force is a local firm that offers diagnostic software to medical clinics. They would like to release ahome application that will let users
C++
Doc Force is a local firm that offers diagnostic software to medical clinics. They would like to release ahome application that will let users select a series of symptoms from text-based menus. After the user has made their selections the application should print a diagnosis. The application can use either a combination of if...else if...else and switch statements or just if...else if...else statements. The first version of the program will only diagnose 5 conditions:1.Flu: temperature >= 101, coughing=yes, nausea=yes2.Cold: temperature = 101, coughing=yes, nausea=no5.Stomach flu: temperature >= 101, coughing=no, nausea=yesAny set of symptoms that do not appear on this list or any bad input from the user should simply print "Unknown Illness". Once youve built and run your code the output should look something like this:
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started