だから、私は Java を初めて使い、私の最新のコードは機能しませんでした。私はerror: not a statement
2回とerror: ';' expected
1回取得します。
試してみると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)));
}
}