球体积

public class SphereVolume {
public static void main(String[] args) {
double radius = 5.0; // 球的半径
double volume = calculateVolume(radius);
System.out.println("球的体积是: " + volume);
}

public static double calculateVolume(double radius) {
    // 球体积公式 V = 4/3 * π * r^3
    return (4.0 / 3.0) * Math.PI * Math.pow(radius, 3);
}

}

posted @ 2024-09-26 11:30  优雅の小佐  阅读(2)  评论(0编辑  收藏  举报