일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- python
- github
- element 조회
- xss game 풀이
- Pwndbg
- burp suite
- 사칙연산
- 백준 알고리즘
- blind sql injection
- sql injection
- 김성엽 대표님
- 포인터
- IF문
- document
- 객체
- lord of sql injection
- 메소드
- suninatas 풀이
- 조건문
- window
- 자바스크립트
- 파이썬
- 배열
- object
- xss game
- property
- jQuery
- 백준 파이썬
- htmlspecialchars
- 함수
Archives
- Today
- Total
목록c++ 배열 메모리 할당 (1)
power-girl0-0
[ C++ ] 동적할당을 이용하여 원의 면적과 둘레 구하기
#include #include using namespace std; class Circle{ int radius; string name; public: Circle(); ~Circle(){}; void setRadius(string n,int r){name = n; radius = r;} double getArea(){return 3.14*radius*radius;} double getSize(){return (radius+radius)*3.14;} string getName(){return name;} }; Circle::Circle(){ radius = 1; } int main(){ cout n; //원의 개수 입력 Circle *pArray = new Circle [n]; //n개의 circle ..
언어/C++
2021. 4. 6. 16:02