일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- document
- window
- 사칙연산
- 파이썬
- 김성엽 대표님
- suninatas 풀이
- 메소드
- xss game
- 포인터
- 자바스크립트
- burp suite
- 객체
- jQuery
- 백준 알고리즘
- object
- github
- 조건문
- property
- IF문
- 배열
- htmlspecialchars
- 함수
- python
- blind sql injection
- xss game 풀이
- Pwndbg
- sql injection
- lord of sql injection
- 백준 파이썬
- element 조회
- Today
- Total
목록언어/C++ (20)
power-girl0-0
조건 : - 채널 번호는 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::..
보호되어 있는 글입니다.
클래스 선언부 -> name.h #include #include using namespace std; class Account{ string name; int id; int money; public: Account(string n, int i, int m); int inquiry(); string getOwner(); int deposit(int m); int withdraw(int m); ~Account(); }; 클래스 구현부 -> detail.cpp #include #include #include "name.h" using namespace std; Account::Account(string n, int i, int m){ name = n; id = i; money = m; } int Account..
생성자와 소멸자에 대한 개념은 아래 주소를 참고해주세요 : ) ( 주소 : 2021.03.23 - [언어/C++] - [ C++ ] 클래스 & 객체) [ C++ ] 클래스 & 객체 클래스 & 객체 개요 클래스 객체를 만들어내기 위해 정의된 설계도, 틀이다. 클래스는 객체가 아니다. 클래스 내부에는 멤버변수와 멤버 함수 선언이 가능하다. 객체 객체는 생성될 때 클래 power-girl0-0.tistory.com 아래 예제는 생성자를 만들어, 이름과 나이를 입력받는 예제이다. #include #include using namespace std; class Person{ string name; int age; public: Person(); Person(string n, int a); Person(string..
#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
클래스 & 객체 개요 클래스 객체를 만들어내기 위해 정의된 설계도, 틀이다. 클래스는 객체가 아니다. 클래스 내부에는 멤버변수와 멤버 함수 선언이 가능하다. 객체 객체는 생성될 때 클래스의 모양을 그대로 가지고 탄생된다. 멤버변수와 멤버함수로 구성한다. 메모리에 생성되어, 실체(instance)라고도 부른다. 하나의 클래스 틀에서 찍어낸 여러 개의 객체 생성이 가능하다. 객체들은 상호 별도의 공간에 생성된다. C++ 클래스 생성 클래스 작성 멤버변수와 멤버함수로 구성하고, 클래스 선언부와 클래스 구현부로 구성된다. 클래스 선언부 class 키워드를 이용하여 클래스를 선언하고, 멤버변수와 멤버함수를 선언한다. 멤버에 대한 접근 권한 지정한다. 접근 권한 지정에는 private, public, protect..
해밍 거리란? 두 개의 길이가 같은 문자열 사이의 거리를 의미한다. 즉, 해밍 거리의 수는 같은 길이의 두 문자열을 비교해서, 다른 문자의 수를 의미한다. #include using namespace std; //틀린 문자수 구하기(단, 문자열의 길이가 일치) int main(){ string first, second; int count = 0; cout