public class Cube {
double width
double height
double depth
public Cube(double width, double height, double depth) {
this.width = width
this.height = height
this.depth = depth
}
public double getVolume() {
return width * height * depth
}
public static void main(String[] args) {
Cube cube = new Cube(20, 10, 5)
System.out.println("Cube volume is: " + cube.getVolume())
}
}
程序实现了Cube类,类的构造器初数春缓始化宽度,高度和深度,并且类中有一个getVolume方法来计算立方体的体积。在main方法中,我们创建一个Cube对象,并调用getVolume方法来计算立薯模方体的体积。
在运行这森毁个程序后,你会得到一个输出:
Cube volume is: 1000.0
这个输出表示,这个立方体的体积是1000立方单位。
import java.util.*public class YUGI{
public static void main(String[] args){
Scanner sc = new Scanner(System.in)
System.out.println("输入一个三位闭冲滑数: "轿腊判碧)
int abc = sc.nextInt()
sc.close()
int a = abc/100
int b = abc / 10 % 10
int c = abc % 10
int x = Math.pow(a,3)+Math.pow(b,3)+Math.pow(c,3)
System.out.println("立方和:" +x)
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)