Run ❯
获取
您自己的
网站
×
更改定向
更改主题,深色/浅色
前往 Spaces
#include <iostream> using namespace std; int main() { int day = 4; switch (day) { case 6: cout << "Today is Saturday"; break; case 7: cout << "Today is Sunday"; break; default: cout << "Looking forward to the Weekend"; } return 0; }
期待周末