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