请问有哪位大侠会编程?求立方体长,宽,高的面积和体积?
来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/23 06:14:39
请问有哪位大侠会编程?求立方体长,宽,高的面积和体积?
请问有哪位大侠会编程?求立方体长,宽,高的面积和体积?
请问有哪位大侠会编程?求立方体长,宽,高的面积和体积?
JAVA实现的(上一个测试执行部分main主函数部分有一个方法调错了,纠正一下) /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub Cube cube = new Cube(1,2,3); //实例化长方体 里面的参数依次为长方体的长、宽、高 System.out.println(cube.getCubeArea()); //输出表面积 System.out.println(cube.getCubeCubage()); //输出体积 }
JAVA实现的 public class Cube { private int length=0; //长 private int width=0; //宽 private int high=0; //高 public Cube(int length_,int width_,int high_){ length = length_; width = width_; high = high_; }...
全部展开
JAVA实现的 public class Cube { private int length=0; //长 private int width=0; //宽 private int high=0; //高 public Cube(int length_,int width_,int high_){ length = length_; width = width_; high = high_; } /** * 得到表面积 * @return */ public long getCubeArea(){ return 2*(length*width+width*high+length*high); } /** * 得到体积 * @return */ public long getCubeCubage(){ return length*width*high; } /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub Cube cube = new Cube(1,2,3); //实例化长方体 里面的参数依次为长方体的长、宽、高 System.out.println(cube.getCubeArea()); //输出表面积 System.out.println(cube.getCubeArea()); //输出体积 } }
收起