Question: Task: Create a C++ Program that prints your full name and your course schedule. I have already got the hang of creating the program that
Task: Create a C++ Program that prints your full name and your course schedule.
I have already got the hang of creating the program that prints my full name (see below)
#include #include using namespace std; const string first_name = "Emily "; const string last_name = "G";
int main() { cout << first_name << last_name << endl; return 0; }
I have no idea how to create a code with my course schedule. (see the following for course information)
BUS 240 - Tuesdays 6:00 pm - 8:50 pm
BUS 286 - Mondays 6 pm - 8:50 pm
CS 172 -Tuesday & Thursday 10 am-11:50 am
MTH 115 Tuesday & Thursday 4:00 pm -5:50 pm
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
