자바에서 목돈 이자율 프로그램 작성하다가 질문합니다

yonoo88의 이미지

대략적인 설명을 드리면 int day를 매개변수로 받아 getInterestRate()에서 double타입의 이자율이 얼마나 되는지를 받아내고

calculateAmount(int day,long amount)에서 getInterestRate()를 호출하여 이자를 얻어내고
double타입의 계산금액(예치금+이자)을 리턴합니다

1일~365일까지 하루씩 증가하면서 100만원을 예금햇을때 이자를 얼마나 받을 수 있는지 출력하도록 main()메소드에서
getInterestRate()메소드를 호출합니다.

그런데 도무지 문제자체가 이해가 안갑니다.
뭘 혼동하고 있는지 모르고 밑에는 일단 요구사항대로 짜본 소스입니다.
그 게산금액을 어떻게 해줘야 할지 의문입니다

public class InterestManager {
static InterestManager manager = new InterestManager();
int day;
public double getInterestRate(int day){

double interestRate = 0;
if(day<=90){
interestRate=0.005;
}
else if(day <= 180){
interestRate=0.01;
}
else if(day < 365){
interestRate=0.02;
}
else if(day >= 365){
interestRate=0.056;
}
return (double)interestRate;

}
public double calculateAmount(int day, long amount){

manager.getInterestRate(day);
amount+=(double)amount*getInterestRate(day);
return (double)amount;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
int day=0;
double amount=100;
for(day=1 ; day<366 ; day++){

//manager.getInterestRate(day);
manager.calculateAmount(day, (long)amount);



}
//System.out.println(manager.calculateAmount(day, (long)amount));

}

}

익명 사용자의 이미지

1, 복리/단리여부, 그리고 복리일경우 일/월/년 복리여부가 빠져있습니다.

그리고 어떤게 이해가 안가는지 말씀을 안하셨네요...

이자계산이라는게 사용일수 * 이율 * 원금 / 365일입니다. 여기에서 단/복리 여부에 따라 구간을 쪼개서 원금+이자한것에 이자를 만들것인가? 단순히 원금에 이자가 붙을것인가가 달라집니다.

익명 사용자의 이미지

그리고 올해와 같이 윤년이 있을경우 윤년은 366으로 계산해야 하는데 그 일자가 윤년과 윤년이 아닌일자가 겹쳐있으면 구간을 분리해서 계산해야 합니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.