搜索资源列表
vczyg
- 共6个程序,分别可以时钟设置,求球体,正方体等各种立体的表面积,学生和教师信息管理等功能。-A total of six procedures were able to set the clock, find the ball, cube and other three-dimensional surface area, students and teachers to information management.
geometry
- c++虚基类的应用实例,定义虚基类计算正方体,球体,圆柱体的表面积和体积。-c++ virtual base class of application examples, the calculation base class defines a virtual cube, sphere, cylinder surface area and volume.
geometry
- c++虚基类的应用实例,定义虚基类计算正方体,球体,圆柱体的表面积和体积。-c++ virtual base class of application examples, the calculation base class defines a virtual cube, sphere, cylinder surface area and volume.
4_2
- 定义一个立方体类,包含的数据成员有立方体的左上角坐标位置和右下角坐标位置,并实现如下要求。 要求: 1)构造函数带入两个三维坐标点位置来初始化成员变量; 2)另一个构造函数带入一个坐标点位置和一个边长来构造一个正方体; 3)一个成员函数求立方体的中心; 4)一个成员函数来获取立方体的体积和表面积; 5)添加静态成员变量统计当前有多少个对象处于生存期,添加静态成员变量表示一个生成过多少个对象; 6)添加静态成员函数获取上面的两个静态成员变量。 7
CPPbiaomianjitijijisuan
- 计算正方体、球体和圆柱体的表面积及体积。要求写出主程序,应用C++的多态性,分别计算边长为6.0的正方体、半径为5.0的球体,以及半径为5.0和高为6.0的圆柱体的表面积-Calculating surface area and volume of the cube, sphere and cylinder. Asked to write the main program, the application of c++ polymorphism, side length are calculat
JAVA
- 定义长方体类Cuboid,要求如下:(1)私有成员变量包括长length、宽width和高height;(2)构造方法包括一个公共的空构造方法,一个能够初始化所有成员变量的构造方法;(3)包括所有的setter和getter方法,其中setter方法要求对形参进行验证,例如长、宽和高都大于0;(4)功能方法包括计算表面积getArea()、计算体积getCubage()、判断是否正方体isCube()、输出该长方体的长宽高printCuboid()、绘制该长方体(给出提示信息即可)drawing