열혈c++ 4-3 2번문제 #define _CRT_SECURE_NO_WARNINGS #include using namespace std; namespace COMP_POS { enum { CLERK = 1, SENIOR = 2, ASSIST = 3, MANAGER = 4 }; void ShowPositionInfo(int pos) { switch (pos) { case CLERK: cout Programming/C++ 2021.08.15