#include using namespace std; int main() { // print Monday's schedule cout << "Monday : 9:00 Office Hours" << endl; cout << " : 10:00 CSCI 130" << endl; cout << " : 11:00 CSCI 312" << endl; cout << " : 14:00 CSCI 330" << endl; cout << endl; // print Tuesday's Schedule cout << "Tuesday : 13:00 Office Hours" << endl; cout << " : 14:00 CSCI 130" << endl; cout << endl; // Wednesday cout << "Wednesday: 9:00 Office Hours" << endl; cout << " : 10:00 CSCI 130" << endl; cout << " : 11:00 CSCI 312" << endl; cout << " : 12:00 Reserved for Meetings" << endl; cout << " : 14:00 CSCI 330" << endl; cout << " : 15:00 UWCC" << endl; cout << endl; // Thursday cout << "Thursday : 13:00 Office Hours" << endl; cout << " : 14:00 CSCI 130" << endl; cout << endl; //Friday cout << "Friday : 10:00 CSCI 130" << endl; cout << " : 11:00 CSCI 312" << endl; cout << " : 12:00 Office Hours" << endl; cout << " : 14:00 CSCI 330" << endl; cout << " : 15:00 Computer Science Club" << endl; cout << " : 15:30 Programming Contest Practice" << endl; cout << endl; return 0; }