运行 ❯
获取你
自有
网站
×
更改方向
更改主题,明暗
转到 Spaces
#include <iostream> using namespace std; enum Level { LOW = 1, MEDIUM, HIGH }; int main() { enum Level myVar = MEDIUM; switch (myVar) { case 1: cout << "Low Level"; break; case 2: cout << "Medium level"; break; case 3: cout << "High level"; break; } return 0; }
中等难度