일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 풀이
- 자바스크립트
- 배열
- lord of sql injection
- 백준 파이썬
- 메소드
- 파이썬
- jQuery
- blind sql injection
- 백준 알고리즘
- python
- github
- IF문
- 조건문
- document
- window
- suninatas 풀이
- 객체
- 사칙연산
- 포인터
- Pwndbg
- 함수
- xss game
- sql injection
- property
- element 조회
- 김성엽 대표님
- htmlspecialchars
- object
Archives
- Today
- Total
목록사각형 면적 (1)
power-girl0-0
[ C++ ] 클래스를 이용하여, 사각형 면적과 둘레 구하기
#include using namespace std; class Rectangle{ public: int width; int height; int getArea(); int getdul(); }; int Rectangle::getArea(){ return width*height; } int Rectangle::getdul(){ return (width*2)+(height*2); } int main(){ Rectangle rect; rect.width =3; rect.height = 5; cout
언어/C++
2021. 3. 23. 14:31