gpt4 book ai didi

java - 获取 noSuchMethodException

转载 作者:行者123 更新时间:2023-11-30 06:09:53 28 4
gpt4 key购买 nike

我正在使用 Taylor 近似在 Java 中编写正弦函数的递归定义,但在运行代码时得到了 noSuchMethodException。这是我到目前为止所拥有的:

public static void Main(String[] args){
System.out.println("The approximate sine of pi over 2 with an accuracy index of ten is:");
System.out.println(Mathematics.recursiveSine(Math.PI/2,10));
}

public static double recursiveSine(double value, int index){
if(index==1) {
return value;
}
return ((double) ((-1)^(2*index + 1)) * Math.pow(value,2*index + 1)/factorial(2*index + 1)) + recursiveSine(value, index-1);
}

public static int factorial(int value){
return value==1 ? value : value*factorial(value-1);
}

最佳答案

您的主要方法需要小写。

你有

public static void Main(String[] args){

应该是

public static void main(String[] args){

关于java - 获取 noSuchMethodException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37065804/

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