//File Name: health.cxx (Your system may require some suffix other than cxx.) //Author: Your Name Goes Here. //Email Address: you@yourmachine.bla.bla //Assignment Number: 2 //Description: Program to determine if the user is ill. //Last Changed: September 23, 1997 #include int main() { const double NORMAL = 98.6;//degrees Fahrenheit double temperature; cout << "Enter your temperature: "; cin >> temperature; if (temperature > NORMAL) { cout << "You have a fever.\n"; cout << "Drink lots of liquids and get to bed.\n"; } else { cout << "You don't have a fever.\n"; cout << "Go study.\n"; } return 0; }