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