gpt4 book ai didi

compiler-errors - 扫描仪无法解析为9型

转载 作者:行者123 更新时间:2023-12-02 11:14:32 26 4
gpt4 key购买 nike

我正在尝试编写一个程序,以允许用户输入最多两个多项式,并且不断出现“无法将扫描仪解析为类型”错误,并且不确定如何解决。这是我的代码:

import java.util.Scanner;
public class Polynomial2
{
public static double evaluate( double x, double[] coefs)
{
int i, coef, deg;
double total=0, poly;
Scanner sc= new scanner(System.in);
System.out.println("Enter degree");
deg=sc.nextInt();
System.out.println("Enter x");
x=sc.nextInt();
if(coefs !=null)
{
for (i=0; i<= deg; i++)
{
System.out.println("Enter coefficent for" +i);
coef=sc.nextInt();
total= total+coef*Math.pow(x,i);
}
}
return type (total);
System.out.println("Total="+total);
}
}

最佳答案

import java.util.Scanner;
Scanner sc= new scanner(System.in);

请注意“Scanner”如何大写。您需要在新功能的右边大写Scanner。
Scanner sc= new Scanner(System.in);

关于compiler-errors - 扫描仪无法解析为9型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48979551/

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