Time Limit: 1s
Memory Limit: 128MB
다음 특징을 가지는 Account 클래스를 만들기 바랍니다.
The class contains:
여러분이 작성한 코드는 아래 샘플코드의 YOUR_CODE 부분에 들어가 컴파일 됩니다.
샘플 코드 참조
샘플 코드 참조
- 출금 금액이 잔액 보다 클경우 출금하지 않는다.
import java.util.*; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); Account account = new Account(sc.nextInt(), sc.nextInt()); Account.setAnnualInterestRate(sc.nextDouble()); System.out.printf("Balance : %.2f\n", account.getBalance()); System.out.printf("Monthly interest : %.2f\n", account.getMonthlyInterest()); account.withdraw(sc.nextDouble()); System.out.printf("Balance : %.2f\n", account.getBalance()); System.out.printf("Monthly interest : %.2f\n", account.getMonthlyInterest()); account.deposit(sc.nextDouble()); System.out.printf("Balance : %.2f\n", account.getBalance()); System.out.printf("Monthly interest : %.2f\n", account.getMonthlyInterest()); } } YOUR_CODE
1 1000 10 20000 100
Balance : 1000.00 Monthly interest : 8.33 Balance : 1000.00 Monthly interest : 8.33 Balance : 1100.00 Monthly interest : 9.17
JAVA2015 PE9.7