Logo 
Search:

Java Articles

Submit Article
Home » Articles » Java » Homework HelpRSS Feeds

Program to evaluate following investment equation V=P(1+R)^N

Posted By: Easy Tutor     Category: Java     Views: 4352

Write a program to evaluate following investment equation V=P(1+R)^N.

Code for Program to evaluate following investment equation V=P(1+R)^N in Java

import java.io.*;

class  CInterest
{
    publicstaticvoid main(String args[]) 
    {
           String str;
          int p=1000;     //Intial Principal Amountfloat r=0.10f;  //Intial Interest Rateint n=0;  
          double CI=0.0;

          try{
                BufferedReader obj = new BufferedReader(new InputStreamReader(System.in));
                System.out.print("Enter Number of yrs : ");
                System.out.flush();
                str=obj.readLine();
                n=Integer.parseInt(str);
            }
            catch(Exception e){}
             
             System.out.println("\n=====COMPOUND INTEREST CALCULATION=====");

             System.out.print("Principal Amount : ");
             System.out.flush();
            for(int i=1;i<=n;i++)
            {
                  
                  System.out.print("      "+p);
                  p=p+1000;
           }

            System.out.print("\nInterest Rate    : ");
            System.out.flush();
            for(int i=1;i<=n;i++)
            {
                   System.out.print("      "+r);
                   r=r+0.01f;
            }

            System.out.println("\nNo. of yrs ");
            for(int i=1;i<=n;i++)
            {
                    System.out.print("       "+i+"            ");
                    System.out.flush();
                    for(int j=1;j<=n;j++)
                    {
                        CI=p*Math.pow(1+r,n);
                        CI=Math.floor(CI);                    
                        System.out.print("   "+CI);
                        p=p+1000;
                        r=r+0.01f;
                    }
                    System.out.println();
            }
            
                  
               

    }
}
  
Share: 



Easy Tutor
Easy Tutor author of Program to evaluate following investment equation V=P(1+R)^N is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

Related Articles and Code:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!