Copy your program from part 1. Add debugging statements to print out the four
scores and any internal values in the function (such as the loop number and
current sum if using a loop to compute the average and/or standard deviation)
using #ifdef and #endif to your average and standard deviation functions. Make
sure to also include the #define at the top of the program for the symbolic
name used in the #ifdef. Recall the example from class for the retail price
case study was:
// Put at top of program after #include and using namespace
#define DEBUG_ME
// Put in program when you need a debug statement
#ifdef DEBUG_ME
printf("wholesale=%.2f days=%d retail=%.2f\n",
wholesale_cost, shelf_time, retail_price);
#endif /* DEBUG_ME */