package com.two;
public class NewBox {
double width;
double height;
double depth;
double volume() {
return width*height*depth;
}
}
class BoxDemo3{
public static void main(String[] args) {
NewBox mybox1=new NewBox();
NewBox mybox2=new NewBox();
double vol;
mybox1.width=10;
mybox1.height=20;
mybox1.depth=15;
mybox2.width=3;
mybox2.height=6;
mybox2.depth=9;
vol=mybox1.volume();
vol=mybox2.volume();
System.out.println("Volume is"+vol);
}
}
慕斯卡2747132
慕婉清1179403
weibo_挺44_03463696
慕的地6079101
Caballarii
相关分类