#include <iostream>int main(){ using std::cout; using std::cin; const int Sunday = 1; const int Monday = 2; const int Tuesday = 3; const int Wednesday = 4; const int Thursday = 5; const int Friday = 6; const int Saturday = 7; int today; cout << "Please enter what day it is: "; cin >> today; if (today == Sunday) cout << "\nToday is Sunday, no school!\n"; if (today == Monday) cout << "\nToday is Monday, back to school.\n"; if (today == Tuesday) cout << "\nToday is Tuesday, still at school.\n"; if (today == Wednesday) cout << "\nToday is Wednesday, middle of the school week.\n"; if (today == Thursday) cout << "\nToday is Thursday, almost the weekends!\n"; if (today == Friday) cout << "\nToday is Friday, tomorrow's the weekend!\n"; if (today == Saturday) cout << "\nFinally! The weekends!\n"; return 0;}
onprogramstart#>::Detectvariable:Monday;Tuesday;Wednesday;Thursday;Friday;Saturday;Sundayonvariablefound>centerprintuser;thedateis;variable;endscript
hnnnggAlrightAndHereIGoCode: [Select]onprogramstart#>::Detectvariable:Monday;Tuesday;Wednesday;Thursday;Friday;Saturday;Sundayonvariablefound>centerprintuser;thedateis;variable;endscript
wat
Do I win?
i have no idea
i need help with this console programi type in whatever day it is, but it doesn't say "Today is Friday," etc.
Works fine for me