这是我上学时的C++实验。。。 里面包含了类的应用

源代码在线查看: box.cpp

软件大小: 458 K
上传用户: a1a1J0
关键词: 实验
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				
				class box
				{
				public:
					box(double aa=0,double bb=0,double cc=0)
					{
						length=aa;
						width=bb;
						hight=cc;
						V=aa*bb*cc;
					}
					void vol()
					{
						cout						cout					}
				private:
					double length,width,hight,V;
				};
				
				int main()
				{
					box mybox(1,2,3);
					mybox.vol();
				
					return 0;
				}			

相关资源