일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- property
- 객체
- xss game 풀이
- object
- 포인터
- jQuery
- blind sql injection
- IF문
- suninatas 풀이
- xss game
- 조건문
- lord of sql injection
- 함수
- sql injection
- 메소드
- 사칙연산
- 김성엽 대표님
- 백준 알고리즘
- 배열
- document
- 파이썬
- window
- burp suite
- htmlspecialchars
- python
- 백준 파이썬
- Pwndbg
- 자바스크립트
- element 조회
- github
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