繁体   English   中英

为什么我的代码没有显示presentValue?

[英]Why doesn't my code show presentValue?

包现值; 导入java.util.Scanner;

公共类PresentValue {

/**
 * @param args the command line arguments
 */
public static void main(String[] args) {
   double P; // present value
   double F; // future value
   double r; // annual interest rate
   double n; // number of years

   P = presentValue();

   F = futureValue();

   r = annualInterest();

   n = years();

   System.exit(0);
}
public static double presentValue()
{
    int input;
    Scanner keyboard = new Scanner(System.in);
      System.out.println("What is the presnt value of you savings account?");
       return keyboard.nextDouble();
}
public static double futureValue()
{
    int input;
    Scanner keyboard = new Scanner(System.in);
      System.out.println("How much do you want in your account in the future?");
      return keyboard.nextDouble();
}
public static double annualInterest()
{
    int input;
    Scanner keyboard = new Scanner(System.in);
    System.out.println("What is youe bank's interest rate?");
    return keyboard.nextDouble();
}
public static double years()
{
    int input;
    Scanner keyboard = new Scanner(System.in);
    System.out.println("How many  years will the money in the bank?");
    return keyboard.nextDouble();
}
public static double presentValue(double F, double r)
{
    return F/(1+(r * r));
}
public static void show(double presentValue)
{
    System.out.println(presentValue);
}

这个问题说写一个执行当前计算的presentValue方法。 该方法应接受将来值,年利率和年数作为参数。 它应该返回现值,即您今天需要存入的金额。 在程序中演示该方法,该程序使用户可以使用公式项的不同值进行实验。

这是公式P = F /(1 + r)^ 2

您将必须使用Math.pow

public static double presentValue(double future, double intrest, double years)
{
    return future / Math.pow(1.0 + intrest, years);
}

请注意,我增加了年数。 您说了两年,但是我认为您真的想有一个参数来指定年数,因为否则,您将不会要求用户输入年数,对吗?

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM