일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- xss game 풀이
- 포인터
- jQuery
- element 조회
- blind sql injection
- object
- window
- 배열
- 백준 알고리즘
- IF문
- sql injection
- 조건문
- 함수
- property
- github
- lord of sql injection
- python
- 객체
- suninatas 풀이
- 메소드
- 김성엽 대표님
- document
- burp suite
- 백준 파이썬
- 파이썬
- Pwndbg
- 자바스크립트
- htmlspecialchars
- 사칙연산
Archives
- Today
- Total
목록tv 알고리즘 (1)
power-girl0-0
[ C++ ] TV
조건 : - 채널 번호는 1번부터 15번까지 있다.- 채널이 5번일 경우 SBS이고, 채널 7은 KBS2, 채널 9는 KBS1, 채널 11은 MBC, 채널 13은 EBS이며, 나머지는 홈쇼핑인 tv프로그램을 생성해라.소스코드 : #include using namespace std; class TV{ private: int num; int now; string ch_now; public: TV(); TV(int num); TV(int num, int ch); void input(); void show(); string channel( ); void tv_on(); void tv_now(); void ch_up(); void ch_down(); }; TV::TV(int ch){ now = ch; } TV::..
언어/C++
2021. 3. 30. 17:21