STL vector와 sort 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 #include #include #include using namespace std; // 5개의 정수를 읽어서 오름차순으로 정렬하라 int main() { vector v; cout 더보기 STL vector의 사용법 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 // STL: vector #include #include #include #include using namespace std; int main() { vector v(100); for (int i = 0; i 더보기 enum 과 연산자 중복의 예 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 // enum 과 // 연산자 중복 #include using namespace std; typedef enum color { RED, WHITE, GREEN } color; typedef enum days {SUN, MON, TUE, WED, THU, FRI, SAT} days; // 연산자 중복 inline days operator++(days& d) { return d = static_cast((static_cast(d) + 1) % 7); } ostream& operator 더보기 이전 1 ··· 9 10 11 12 13 14 15 ··· 34 다음