일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- burp suite
- 파이썬
- 백준 파이썬
- 객체
- 자바스크립트
- 메소드
- 함수
- xss game 풀이
- blind sql injection
- 백준 알고리즘
- 포인터
- github
- Pwndbg
- document
- property
- 김성엽 대표님
- 조건문
- htmlspecialchars
- python
- window
- jQuery
- lord of sql injection
- 배열
- 사칙연산
- element 조회
- xss game
- sql injection
- object
- suninatas 풀이
- IF문
Archives
- Today
- Total
목록c++ 알고리즘 (3)
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
[ C++ ] 랜덤한 수 합 맞추기
랜덤한 수의 합 맞추기 #include #include #include using namespace std; int main(){ int a, b, answer,result; int count=0; srand(time(NULL)); while(1){ a = rand()%10+1; b = rand()%10+1; result = a+b; cout
언어/C++
2021. 3. 23. 02:02