class Buyer {
var $money = 1000,
$cart = array(), // 구입한 제품을 저장하기 위한 배열
$i = 0; // Product배열 cart에 사용될 index
function buy(Product $p) {
if ($p->price > $this->money) {
println('잔액이 부족하여 ' . $p . '를 살수 없습니댜.');
return;
}
$this->money -= $p->price;
$this->add($p);
/*
가진 돈과 물건의 가격을 비교해서 가진 돈이 적으며 종료한다.
가진 돈이 충분하면, 제품의 가격을 가진 돈에서 빼고
장바구니에 구입한 물건을 담는다. (add메서드 호출)
*/
}
function add(Product $p) {
$this->cart[$this->i] = $p;
$this->i++;
/*
물건을 장바구니(cart)에 저장한다. 그리고 i의 값을 1 증가시킨다.
*/
} // add(Product p)
function summary() {
$itemList = '';
$sum = 0;
for ($i=0; $i<count($this->cart); $i++) {
$this->itemList .= $this->cart[$i] . ',';
$this->sum += $this->cart[$i]->price;
}
println('구입한 물건 : ' . $this->itemList);
println('사용한 금액 : ' . $this->sum);
println('남은 금액 : ' . $this->money);
/*
장바구니에 담긴 물건들의 목록을 만들어 출력한다.
장바구니에 담긴 물건들의 가격을 모두 더해서 출력한다.
물건을 사고 남은 금액(money)를 출력한다.
*/
} // summary()
}
class Product {
var $price; // 제품의 가격
function __construct($price) {
$this->price = $price;
}
}
class Tv extends Product {
function __construct() {
Parent::__construct(100);
}
public function __toString() {
return 'Tv';
}
}
class Computer extends Product {
function __construct() {
Parent::__construct(200);
}
public function __toString() {
return 'Computer';
}
}
class Audio extends Product {
function __construct() {
Parent::__construct(50); }
public function __toString() {
return 'Audio';
}
}
$b = new Buyer();
$b->buy(new Tv());
$b->buy(new Computer());
$b->buy(new Tv());
$b->buy(new Audio());
$b->buy(new Computer());
$b->buy(new Computer());
$b->buy(new Computer());
$b->summary();
// 줄바꿈 출력
function println($arg) {
echo $arg.'<br />';
}
/* 출력
잔액이 부족하여 Computer를 살수 없습니댜.
구입한 물건 : Tv,Computer,Tv,Audio,Computer,Computer,사용한 금액 : 850
남은 금액 : 150
*/
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7630 | 10년 전 | 670 | ||
| 7629 |
|
10년 전 | 2417 | |
| 7628 | 10년 전 | 804 | ||
| 7627 |
|
10년 전 | 1044 | |
| 7626 |
|
10년 전 | 1802 | |
| 7625 | 10년 전 | 727 | ||
| 7624 | 10년 전 | 746 | ||
| 7623 |
|
10년 전 | 3120 | |
| 7622 | 10년 전 | 746 | ||
| 7621 |
leeleeleelee
|
10년 전 | 598 | |
| 7620 | 10년 전 | 549 | ||
| 7619 | 10년 전 | 509 | ||
| 7618 | 10년 전 | 1044 | ||
| 7617 | 10년 전 | 733 | ||
| 7616 | 10년 전 | 670 | ||
| 7615 | 10년 전 | 737 | ||
| 7614 | 10년 전 | 1278 | ||
| 7613 |
|
10년 전 | 2091 | |
| 7612 | 10년 전 | 1173 | ||
| 7611 | 10년 전 | 1432 | ||
| 7610 |
|
10년 전 | 1913 | |
| 7609 |
|
10년 전 | 1368 | |
| 7608 |
mwdkim
|
10년 전 | 1145 | |
| 7607 |
|
10년 전 | 1075 | |
| 7606 |
mwdkim
|
10년 전 | 3952 | |
| 7605 | 10년 전 | 701 | ||
| 7604 | 10년 전 | 1040 | ||
| 7603 | 10년 전 | 1660 | ||
| 7602 |
|
10년 전 | 1091 | |
| 7601 |
AniNest
|
10년 전 | 2807 | |
| 7600 |
port443
|
10년 전 | 1047 | |
| 7599 | 10년 전 | 954 | ||
| 7598 | 10년 전 | 1037 | ||
| 7597 | 10년 전 | 4584 | ||
| 7596 |
SeungYeon
|
10년 전 | 906 | |
| 7595 |
untitled
|
10년 전 | 2448 | |
| 7594 |
프로그래머7
|
10년 전 | 1747 | |
| 7593 |
untitled
|
10년 전 | 2387 | |
| 7592 |
untitled
|
10년 전 | 1955 | |
| 7591 |
untitled
|
10년 전 | 2691 | |
| 7590 |
아리마2001
|
10년 전 | 868 | |
| 7589 | 10년 전 | 1119 | ||
| 7588 |
|
10년 전 | 2936 | |
| 7587 | 10년 전 | 1319 | ||
| 7586 | 10년 전 | 681 | ||
| 7585 | 10년 전 | 1715 | ||
| 7584 | 10년 전 | 1423 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1184 | |
| 7582 |
|
10년 전 | 1144 | |
| 7581 | 10년 전 | 1372 | ||
| 7580 | 10년 전 | 1022 | ||
| 7579 |
|
10년 전 | 615 | |
| 7578 | 10년 전 | 1439 | ||
| 7577 |
|
10년 전 | 1886 | |
| 7576 | 10년 전 | 1397 | ||
| 7575 |
멋진남자임
|
10년 전 | 1480 | |
| 7574 | 10년 전 | 2137 | ||
| 7573 | 10년 전 | 3273 | ||
| 7572 | 10년 전 | 774 | ||
| 7571 |
|
10년 전 | 793 | |
| 7570 |
|
10년 전 | 1335 | |
| 7569 | 10년 전 | 1562 | ||
| 7568 |
this1mg
|
10년 전 | 1061 | |
| 7567 |
|
10년 전 | 776 | |
| 7566 | 10년 전 | 929 | ||
| 7565 |
Angel하늘
|
10년 전 | 1028 | |
| 7564 |
seoldi
|
10년 전 | 1273 | |
| 7563 |
|
10년 전 | 1412 | |
| 7562 |
멋진남자임
|
10년 전 | 2107 | |
| 7561 | 10년 전 | 726 | ||
| 7560 |
leeleeleelee
|
10년 전 | 925 | |
| 7559 | 10년 전 | 5066 | ||
| 7558 |
RinaP
|
10년 전 | 803 | |
| 7557 |
|
10년 전 | 1269 | |
| 7556 | 10년 전 | 1207 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1676 | |
| 7554 | 10년 전 | 1106 | ||
| 7553 |
senseme
|
10년 전 | 1351 | |
| 7552 |
ehdltdoit
|
10년 전 | 1451 | |
| 7551 |
|
10년 전 | 1841 | |
| 7550 |
leeleeleelee
|
10년 전 | 1610 | |
| 7549 | 10년 전 | 2444 | ||
| 7548 | 10년 전 | 1854 | ||
| 7547 |
멋진남자임
|
10년 전 | 1973 | |
| 7546 | 10년 전 | 1020 | ||
| 7545 |
ILMare1003
|
10년 전 | 1305 | |
| 7544 |
|
10년 전 | 1264 | |
| 7543 | 10년 전 | 901 | ||
| 7542 | 10년 전 | 678 | ||
| 7541 |
울라라라우
|
10년 전 | 877 | |
| 7540 | 10년 전 | 1607 | ||
| 7539 | 10년 전 | 952 | ||
| 7538 |
|
10년 전 | 1841 | |
| 7537 | 10년 전 | 3624 | ||
| 7536 |
Gaumi
|
10년 전 | 1433 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1290 | |
| 7534 |
senseme
|
10년 전 | 1217 | |
| 7533 | 10년 전 | 1217 | ||
| 7532 | 10년 전 | 880 | ||
| 7531 | 10년 전 | 2073 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기