Electrical and Computer Engineering
6 of 30
UAH
CPE 112
Activity Program
•//*****************************************************
•// Activity program
•// This program outputs an appropriate activity
•// for a given temperature
•//*****************************************************
•
•#include <iostream>
•using namespace std;
•
•void GetTemp( int& );            // Function prototypes
•void PrintActivity( int );
•
•