일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- document
- sql injection
- suninatas 풀이
- Pwndbg
- 조건문
- xss game 풀이
- 사칙연산
- 포인터
- 배열
- property
- blind sql injection
- jQuery
- xss game
- 백준 파이썬
- 파이썬
- element 조회
- 객체
- 함수
- object
- python
- 백준 알고리즘
- 자바스크립트
- 메소드
- burp suite
- github
- htmlspecialchars
- IF문
- 김성엽 대표님
- window
- lord of sql injection
Archives
- Today
- Total
목록생성자 선언 (1)
power-girl0-0
[ C++ ] 잔액 구하기 ( 클래스를 이용한 예제 )
클래스 선언부 -> name.h #include #include using namespace std; class Account{ string name; int id; int money; public: Account(string n, int i, int m); int inquiry(); string getOwner(); int deposit(int m); int withdraw(int m); ~Account(); }; 클래스 구현부 -> detail.cpp #include #include #include "name.h" using namespace std; Account::Account(string n, int i, int m){ name = n; id = i; money = m; } int Account..
언어/C++
2021. 3. 23. 16:59