
//*****************************************************************************
////  Course:             COMS 2104 03 Foundations of Computer Programming I
////  Semester:           Spring 2004
////  Assignment Number:  #2                             
////  Author Name:        DarC KonQuesT                        
////  Date Written:       February 5, 2004
////                                                         
////  Description of Program:                              
////  Takes an numeric input of body temperature and determines whether    
////  or not the student should go to class.                             
////*****************************************************************************
#include <iostream>
using namespace std;
float temperature;

  int main()
  {
  	cout << "Enter your temperature:  ";
	cin >> temperature;
	if (temperature > 98.6)
	{
		cout << "You have a fever." << endl;
		cout << "Drink lots of liquid and get to bed" << endl;
	}
	else
	{
		cout << "You don't have a fever." << endl;
		cout << "Go study." << endl;
	}
	return 0;
  }


