gpt4 book ai didi

java - "Error: ' .class ' expected"

转载 作者:行者123 更新时间:2023-11-29 10:15:22 26 4
gpt4 key购买 nike

所以我是 Java 的新手,我最近的一段代码没有工作。我收到两次 error: not a statementerror: ';'预期一次。

如果我尝试 radius=double;,它会出现错误:Error: '.class' expected 在第 8 行,其中插入符显示在半冒号。

我不确定哪里出了问题,但这是我的代码。时间不长……提前谢谢你。

import java.util.Scanner;
import static java.lang.Math;

public class Formula {
public static void main(String[] args);{
double = radius;

Scanner in = new Scanner(System.in);
System.out.print("Radius of circle (cm) :> ");
double radius = in.nextDouble();
System.out.print("Area of circle :> " + Math.PI * Math.pow(radius,2));
System.out.print("Circumference of circle :> " + 2 * Math.PI * radius);
System.out.print("Surface area the sphere with that radius :> " + 4 * Math.PI * Math.pow(radius,2));
System.out.print("Volume of sphere with that radius :> " + 4/3 * (radius * Math.pow(radius,2)));

}
}

最佳答案

改变

double = radius;

double radius = 0;

并删除 public static void main(String[] args); 方法定义之后的 ;

此外,在语句double radius = in.nextDouble(); 中,您必须删除double 关键字,因为您有已经定义了一个同名变量。

关于java - "Error: ' .class ' expected",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19384681/

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