この数式の変換に問題がありますV = 4/3 π r^3
。とを使用Math.PI
しMath.pow
ましたが、次のエラーが発生します。
';' 期待される
また、直径変数は機能しません。そこにエラーはありますか?
import java.util.Scanner;
import javax.swing.JOptionPane;
public class NumericTypes
{
public static void main (String [] args)
{
double radius;
double volume;
double diameter;
diameter = JOptionPane.showInputDialog("enter the diameter of a sphere.");
radius = diameter / 2;
volume = (4 / 3) Math.PI * Math.pow(radius, 3);
JOptionPane.showMessageDialog("The radius for the sphere is "+ radius
+ "and the volume of the sphere is ");
}
}