Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: I NEED HELP.

  1. #1
    Junior Member
    Join Date
    May 2014
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default I NEED HELP.

    Can someone help me with this pls?

    Write an application that uses interactive input to help a home buyer calculate
    her expenses for buying and maintaining a house. The program asks the user
    to type the following input values:
    ² the price of the house
    ² the down payment on the loan for the house
    ² The number of years for repaying the loan.
    ² the monthly utility expenses
    In response, the application prints
    ² The monthly expense of keeping the house. (Note: this amount does not
    include the down payment.)
    ² The annual expense of keeping the house. (Again, exclude the down pay-
    ment.)
    ² The total expense of keeping the house for the number of years needed to
    repay the loan. (Include the down payment in this amount.)
    The application does not worry about in°ation costs in its calculations.
    Use this formula to compute the monthly payment on the loan for the house:
    payment ={(1+i)^y*p*i}/{(1+i)^y-1)*12} where y is the number of years
    for repaying the loan, and p is loan's principal, that is, the price of the house
    minus the down payment.

    It is found principles of programming in Java,Schmidt

  2. #2
    Junior Member
    Join Date
    May 2014
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default I NEED HELP.

    Can someone help me with this pls?

    Write an application that uses interactive input to help a home buyer calculate
    her expenses for buying and maintaining a house. The program asks the user
    to type the following input values:
    ² the price of the house
    ² the down payment on the loan for the house
    ² The number of years for repaying the loan.
    ² the monthly utility expenses
    In response, the application prints
    ² The monthly expense of keeping the house. (Note: this amount does not
    include the down payment.)
    ² The annual expense of keeping the house. (Again, exclude the down pay-
    ment.)
    ² The total expense of keeping the house for the number of years needed to
    repay the loan. (Include the down payment in this amount.)
    The application does not worry about in°ation costs in its calculations.
    Use this formula to compute the monthly payment on the loan for the house:
    payment ={(1+i)^y*p*i}/{(1+i)^y-1)*12} where y is the number of years
    for repaying the loan, and p is loan's principal, that is, the price of the house
    minus the down payment.

    It is found principles of programming in Java,Schmidt

  3. #3
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: I NEED HELP.

    What have you tried?

    Do you have any specific questions about the program?
    If you don't understand my answer, don't ignore it, ask a question.

Tags for this Thread