일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Transistor
- npn
- 일대일변환
- timetimer
- timetimermod
- 읽었던 것도 다정리해놔야겠다.
- 유튜브 먹통
- 내돈
- 언젠가 나도 내집을 꾸미겠지.
- 유튜브 에러
- MOD
- 펠리칸만년필
- AC DC
- 유튜브 서버 터짐
- 교류직류
- 미술관 가고싶다.
- icecreamsundae
- 유튜브 서버
- inhaler
- 부분인쇄
- 꿀팁
- 일대일대응
- 필사
- 필사용 만년필
- 서버 터짐
- 변수변환
- Pelican
- PnP
- 다중적분
- 본명조와 본고딕 글씨체가 맘에 들어요.
목록공부/C++ (5)
Woooniverse
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.
#include #include using namespace std; class Printer { private: string model, printer, person; public: Printer(string _model = "d_model", string _printer = "d_printer", string _person = "d_person") : model(_model), printer(_printer), person(_person) { } virtual void printInfo() { cout
#include using namespace std; class Account { string name, id; int balance; public: Account(string input_name = "defalut_name", string input_id = "defalut_id", int input_bal = 0) : name(input_name), id(input_id), balance(input_bal) {} //생성자 및 defalut 초기화 string getName(void)const; string getID(void)const; int getBal(void)const; Account operator+(const Account& someone_account) { Account result(t..