#include <iostream>
using namespace std;
void main()
{
 enum
 {
  test1,
  test2,
  test3,
  test4
 };
 int i=test4;
 cout<<i<<endl;
 getchar();
}

相关文章:

  • 2022-12-23
  • 2021-11-17
  • 2022-01-12
  • 2022-12-23
  • 2021-08-02
  • 2022-02-02
  • 2021-12-13
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-11
  • 2022-12-23
  • 2022-12-23
  • 2021-05-17
  • 2021-06-17
  • 2022-12-23
相关资源
相似解决方案