Please send questions to st10@humboldt.edu .
#include <iostream>
#include <cmath>
#include "cheer.h"
using namespace std;


int main()
{
    cout << boolalpha;
    cout << endl;
    cout << "testing cheer: true's should mean passed: " << endl;
    cout << "---------------------------------------" << endl;
    cout << "(cheer(3) == 3): " << (cheer(3) == 3) << endl;
    cout << endl;

    return EXIT_SUCCESS;
}