일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- object
- 김성엽 대표님
- 포인터
- 백준 파이썬
- github
- 백준 알고리즘
- 자바스크립트
- xss game 풀이
- 함수
- window
- jQuery
- 메소드
- 파이썬
- Pwndbg
- burp suite
- blind sql injection
- suninatas 풀이
- 조건문
- lord of sql injection
- IF문
- python
- htmlspecialchars
- property
- 객체
- xss game
- 배열
- element 조회
- document
- sql injection
- 사칙연산
Archives
- Today
- Total
power-girl0-0
[ C++ ] 잔액 구하기 ( 클래스를 이용한 예제 ) 본문
728x90
클래스 선언부 -> name.h
#include <iostream>
#include <string.h>
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 <iostream>
#include <string.h>
#include "name.h"
using namespace std;
Account::Account(string n, int i, int m){
name = n;
id = i;
money = m;
}
int Account::inquiry(){
return money;
}
string Account::getOwner(){
return name;
}
int Account::deposit(int m){
return money += m;
}
int Account::withdraw(int m){
return money -= m;
}
Account::~Account(){
cout<<name<<"님의 계좌가 삭제되었습니다."<<endl;
}
main -> Bank.cpp
#include <iostream>
#include <string.h>
#include "detail.cpp"
int main(){
Account a("기태",1,5000); //이름은 기태, 아이디 1번, 잔액 5000원
a.deposit(50000);//50000 저금
cout<<a.getOwner()<<"의 잔액은 "<<a.inquiry()<<"원입니다."<<endl; //기태의 잔액은 55000원
int money = a.withdraw(20000); //20000원 출금
cout<<a.getOwner()<<"의 잔액은 "<<a.inquiry()<<"원입니다."<<endl; //기태의 잔액은 35000원
return 0;
}
결과
728x90
'언어 > C++' 카테고리의 다른 글
[ C++ ] TV (0) | 2021.03.30 |
---|---|
[ C++ ] 계산기 ( 클래스를 이용한 예제 ) (0) | 2021.03.23 |
[ C++ ] 생성자와 소멸자를 이용한 예제 (0) | 2021.03.23 |
[ C++ ] 클래스를 이용하여, 사각형 면적과 둘레 구하기 (0) | 2021.03.23 |
[ C++ ] 클래스 & 객체 (0) | 2021.03.23 |
Comments