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


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

    return EXIT_SUCCESS;
}