일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- lord of sql injection
- 사칙연산
- property
- 백준 알고리즘
- document
- 배열
- github
- jQuery
- 메소드
- Pwndbg
- xss game 풀이
- blind sql injection
- window
- suninatas 풀이
- 포인터
- 자바스크립트
- burp suite
- python
- element 조회
- sql injection
- 파이썬
- 백준 파이썬
- IF문
- 함수
- xss game
- 객체
- htmlspecialchars
- 조건문
- object
- 김성엽 대표님
- Today
- Total
목록Find (3)
power-girl0-0
조건 : - map을 활용한다. - 5개의 학번과 이름을 저장한다. - 학번을 입력받으면, 이름이 출력되어야 한다. - 0을 입력시, 종료되어야 한다. 소스코드 : #include #include #include using namespace std; int main(){ map m; m.insert(make_pair(2012111,"dohyeon")); m.insert(make_pair(2012112,"haeun")); m.insert(make_pair(2012113,"chae")); m.insert(make_pair(2012114,"gift")); m.insert(make_pair(2012115,"flower")); int str; while(true){ cout>str; if(str == 0){ br..
조건 :- 문자열을 입력받는다.- 받은 문자열에서 찾을 문자를 입력받는다.- 찾은 문자의 개수를 구한다.소스코드 : #include #include using namespace std; int main(){ string str, find_str; int count=0; cout
생활코딩 웹브라우저 javascript를 참고하여 공부하였습니다. 스스로 공부한 것을 정리하고 복습하기 위한 목적으로 작성하였습니다. ( 출처 : https://opentutorials.org/course/743inf.run/pBzy) jQuery에서 조회 범위가 그 객체의 하위 element로 제한하려면 어떻게 작업해야할까? selector context 가장 간편한 방법은 조회할 때 조회 범위를 제한하는 것이다. 그 제한된 범위를 jQuery에서는 selector context라고 한다. html css JavaScript JavaScript Core DOM BOM 선택자를 아래처럼 작성해도 결과가 같다. $( "#active .marked").css( "background-color", "red" ..