일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 메소드
- 사칙연산
- 객체
- xss game 풀이
- Pwndbg
- 배열
- suninatas 풀이
- 자바스크립트
- burp suite
- 김성엽 대표님
- IF문
- 함수
- 백준 알고리즘
- blind sql injection
- htmlspecialchars
- lord of sql injection
- property
- xss game
- sql injection
- 포인터
- object
- python
- 파이썬
- jQuery
- document
- github
- 조건문
- element 조회
- window
- 백준 파이썬
Archives
- Today
- Total
목록은행 알고리즘 (1)
power-girl0-0
[ C++ ] 은행 알고리즘
조건 :- 비밀번호 입력시, 노출되지 않고 *모양으로 출력되어야 한다.- 회원관리, 입금, 출금, 잔액 항목을 넣어라.- 입금과 출금시, 계좌번호와 비밀번호가 틀리면 입출금이 불가능하다.소스코드 :#include #include #include using namespace std; class Bank{ private: string name; //회원명 string account; //계좌번호 string pwd; //비밀번호 int num; int my_money; public: Bank(string n, string a, string p); int money(); bool check(); void person (); void in(); void out(); string security(); }; Ban..
언어/C++
2021. 3. 30. 17:31