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