//This file is symphony.C. #include #include #include "symphony.h" using namespace std; void symphony::install(int n) { if (n < 1 || n > 41) { cerr << "\n" << n << " must be in the range 1 to 41 inclusive.\n"; exit(EXIT_FAILURE); } i = n; }