gpt4 book ai didi

java - 类、接口(interface)或枚举预期错误

转载 作者:行者123 更新时间:2023-11-30 06:12:29 25 4
gpt4 key购买 nike

我已经尝试了几乎所有我能想到的方法来修复我的错误,但我完全被难住了。我不断收到“预期的类、接口(interface)或枚举”错误。我错过了什么?

import java.until.*;
public class FutureValues {
public static final Scanner CONSOLE = new Scanner(System.in);

public static void main(String[] args) {
System.out.println("Lab 3 written by JENNIFER ADAME");
System.out.println();
//declare variables
double p;
double r;
double y;
double f;

System.out.print("Enter present value: ");
double p = console.nextDouble( );
System.out.print("Enter interest rate: ");
double r = console.nextDouble( );
System.out.print("Enter number of years: ");
double y = console.nextDouble( );
double f = compoundInterest(p, r, y);
System.out.print("The future value is" + f);
}

public static double compoundInterest (double p, double r, double y) {
double f = p * Math.pow(((1 + r) / 100), y);
return f;
}
}
}

如果有人能提供帮助那就太棒了!

最佳答案

你在末尾添加了一个额外的大括号 '}'...只需将其删除

如果以后想避免此类错误,请考虑正确格式化代码。(对于 eclipse 使用 Ctrl+shift+f,对于 netbeans 使用 Alt+shift+f)

关于java - 类、接口(interface)或枚举预期错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32844889/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com