/*
枚举和switch的结合使用.
*/
#include <iostream>
using namespace std;
int main()
{
enum MEIJU{A,B,C};
int x;
while(cin >> x)
{
switch(x)
{
case A:
cout << "A" << endl;
break;
case B:
cout << "B" << endl;
break;
case C:
cout << "C" << endl;
break;
default:
cout << "DEFAULT" << endl;
}
cin.clear();
}
return 0;
}
枚举和switch的结合使用
最新推荐文章于 2024-09-02 17:33:29 发布