public class TestMain {
public static void main(String[] args) {
// TODO Auto-generated method stub
double profit = 3.5; //연이율
double month = 240;
double amount = 240000000;
double rate = profit / 100 / 12;
double denaminator = Math.pow((1 + rate), month) - 1;
double result = (rate + (rate / denaminator)) * amount;
System.out.println(result);
}
}
'자바·JSP' 카테고리의 다른 글
Apache Configuration for Java WebStart (0) | 2018.12.14 |
---|---|
POST, GET 방식 확인 (0) | 2018.01.25 |
두 IP사이의 IP 모두 출력하기 (0) | 2015.10.20 |
jsoup 사용 예제 (0) | 2015.05.29 |
MyBatis / iBatis에서 조건절에 Like 검색 시 처리하는 방법 (0) | 2015.01.30 |