尝试在java中计算spherevolume

luaexgnf  于 2021-08-20  发布在  Java
关注(0)|答案(0)|浏览(166)

**已关闭。**此问题不可复制或由打字错误引起。它目前不接受答案。
**想要改进此问题?**更新问题,使其位于堆栈溢出主题上。

20小时前关门了。
改进这个问题
我是一名学生,试图在家庭作业中找出这个问题,而不是测验或测验。
给定sphereradius,计算球体的体积并将结果指定给spherevolume。使用(4.0/3.0)执行浮点除法,而不是使用(4/3)执行整数除法。
球体的体积=(4.0/3.0)πr3(提示:r3可以使用*)
zybooks预先编写了spherevolume计算前后的所有代码。当我运行代码时,会产生一个错误代码,上面写着。。。

SphereVolumeCalculator.java:11: error: cannot find symbol
      sphereVolume = (4.0/3.0)*piVal*sphereRadius*sphereRadius*sphereRadius;
                               ^
  symbol:   variable piVal
  location: class SphereVolumeCalculator
1 error
import java.util.Scanner;

public class SphereVolumeCalculator {
   public static void main(String[] args) {
      Scanner scnr = new Scanner(System.in);
      double sphereVolume;
      double sphereRadius;

      sphereRadius = scnr.nextDouble();

      sphereVolume =(4.0/3.0)*piVal*sphereRadius*sphereRadius*sphereRadius;

      System.out.printf("%.2f\n", sphereVolume);
   }
}

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题