搜索资源列表
e11
- 求球体的表面积 判断一个数是否为素数 求球体的表面积 判断一个数是否为素数-Sphere of surface area for a few to judge whether the prime number for a sphere of surface area to determine whether the number of prime numbers
yuanzhiti
- 函数功能:计算圆柱体的表面积和体积 输入:半径 高 方法:C++结构体实现-Function features: calculate the surface area and volume of a cylinder type: high radius method: C++ structures to achieve
yuanzhuti_class
- 功能:圆柱体的表面积和体积 输入:半径 高 方法:基于C++中的类来实现-Function: a cylinder surface area and volume input: radius of high Methods: Based on C++ classes to implement
biaomianjidebianhua
- 小学六年级“表面积的变化”,用PPT演示出来后,效果比口授法好许多,适合广大师范类同学学习。-Sixth grade, " surface area change," came out with a PPT presentation, the effect much better than the dictation method is suitable for students studying broad Teacher Education.
exp5.1
- 求圆柱,立方体,球体的表面积和体积 求圆柱,立方体,球体的表面积和体积-Of cylinder, cube, sphere of surface area and volume
22
- 2、 编写一个程序计算出球、圆柱和圆锥的表面积和体积。 a) 要求: i. 定义一个基类圆,至少含有一个数据成员半径; ii. 定义基类的派生类球、圆柱、圆锥,都含有求表面积和体积的成员函数和输出函数。 iii. 定义主函数,求球、圆柱、圆锥的和体积。 -2, write a program to calculate the ball, cylindrical and conical surface area and volume. a) asked: i. defining
C_1_1
- 1、构造一个类,该类实现描述长方体的各个特性,例如能够根据长方体的长、宽、高,获取它的表面积、体积,同时获取它的长、宽、高。-1, construct a class, class descr iption cuboid characteristics, for example, according to the length of the cuboid, width, height, access to its surface area, volume, at the same time to
BOX
- 设计一个立方体类Box,它能计算体积和表面积,设计后自行测试。 私有数据:a(边长),volume(体积),area(表面积) 构造函数:1.Box(),2.Box(float r) 设计一个立方体类Box,它能计算体积和表面积,设计后自行测试。 私有数据:a(边长),volume(体积),area(表面积) 构造函数:1.Box(),2.Box(float r) -It can calculate the volume and surface area, to desi
mianxiangduixiang
- C++面向对象方法的编程,包括磁盘文件数据的输入输出,复数运算,求圆的表面积,图书管理程序,学生数据的赋值和输出,钟表类及闹钟类,时间的输入和输出,正整数集合的运算,泳池造价,people类。-C++ object-oriented programming methods, including disk file data input and output, complex computation, the surface area of circular, l
3
- 设计一个立方体类Box,能够计算并输出立方体的表面积和体积。 提示:定义一个立方体类Box,包含一个私有数据成员(立方体边长),两个公有函数(构造函数Box和计算并输出立方体的表面积和体积的函数show)。 -Design of a cube class Box, the output can be calculated and the surface area and volume of the cube. Tip: define a class cube Box, comprisin
4_2
- 定义一个立方体类,包含的数据成员有立方体的左上角坐标位置和右下角坐标位置,并实现如下要求。 要求: 1)构造函数带入两个三维坐标点位置来初始化成员变量; 2)另一个构造函数带入一个坐标点位置和一个边长来构造一个正方体; 3)一个成员函数求立方体的中心; 4)一个成员函数来获取立方体的体积和表面积; 5)添加静态成员变量统计当前有多少个对象处于生存期,添加静态成员变量表示一个生成过多少个对象; 6)添加静态成员函数获取上面的两个静态成员变量。 7
cSharp-code-1
- 编写一个程序计算出球、圆柱和圆锥的表面积和体积源代码-Write a program that calculates the ball, cylindrical and tapered surface area and volume of source code
qiu
- “球体积和球表面积计算设计”。设计一个对话框,可以输入球的半径,输出球体积和球表面积。- Design and calculation of ball volume and surface area of a sphere . The design of a dialog box, you can enter the radius of the ball, the ball ball output volume and surface area.
JAVA
- 定义长方体类Cuboid,要求如下:(1)私有成员变量包括长length、宽width和高height;(2)构造方法包括一个公共的空构造方法,一个能够初始化所有成员变量的构造方法;(3)包括所有的setter和getter方法,其中setter方法要求对形参进行验证,例如长、宽和高都大于0;(4)功能方法包括计算表面积getArea()、计算体积getCubage()、判断是否正方体isCube()、输出该长方体的长宽高printCuboid()、绘制该长方体(给出提示信息即可)drawing