Project: Day of the Week

Create a switch that outputs the day of the week for numbers one to seven (e.g., one is equal to Monday).

Project: Day of the Week

Create a switch that outputs the day of the week for numbers one to seven (e.g., one is equal to Monday).

C++
#include <iostream>
using namespace std;
int main() {
// Your code goes here
return 0;
}