Power java 08장 Programming 6번문제 풀이

Posted by 알 수 없는 사용자
2016. 4. 4. 10:19 Java/PowerJava 문제풀이

 

 

※ 문제풀이는 작성자 본인이 직접 한것이므로 정답이 아닐 수 있습니다.

   혹시 보시고 틀린 부분이 있으면 알려주시기 바랍니다.

 

6. 본문에 등장하는 은행계좌를 나타내는 BackAccuount 클래스에 다음과 같은 기능을 하는 메소드를 추가하고 테스트하라

      //현재 객체의 잔액에서 amount만큼을 otherAccount 계좌로 송금한다.

public int trnasfer(int amount, BankAccount ohterAccount)

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package day05;
 
import java.util.Scanner;
 
class BankAccount{
    int accountNumber;
    String owner;
    int balance;
    int Account1=1000000;
    int Account2=0;
    
    void deposit(int amount){//입금
        balance += amount;
    }
    void withdraw(int amount){//출금
        balance -=amount;
    }
    public String toString(){
        return "현재 잔액은 " + balance + "입니다";
    }
    public String transfer(int amount, BankAccount otherAccount){ 
        
        if(Account1 >= amount){
            Account1 -= amount;
            otherAccount.Account2 += amount; 
            return "이체한 금액은" +amount + "입니다";
            }
        else{
           return "잔액이 부족합니다."
        }
    }
}
 
public class Programming8_6 {
    public static void main(String[] args) {
    
        Scanner sc = new Scanner(System.in);
        
        BankAccount my = new BankAccount();
        BankAccount you = new BankAccount();
          
        System.out.println("이체할 금액을 입력하시오");
        int amount = sc.nextInt();
        System.out.println(my.transfer(amount, you)); 
         
        System.out.println("내 계좌 잔액 : " + my.Account1);
        System.out.println("받으시는 분 잔액 : " + you.Account2);
    }
}
 
 
 
cs

 

 ※ 문제 출처 : POWER JAVA 2판/인피니티북스/천인국 하상호 공저