 |
 |
 |
 |
//*****************************************************
|
|
//
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 );
|
|