#include #include "students.h" using namespace std; int main() { sseStudent bob; if(!bob.setDegree(3)) { cout << "error setting degree..." << endl; } if(!bob.setApplied(0)) { cout << "error setting applied..." << endl; } cout << bob.getDegree() << endl << bob.isApplied() << endl; }