所以我是 Java 新手,我最近的一段代码没有用。我得到error: not a statement
两次和error: ';' expected
一次。
如果我尝试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)));
}
}