标题:[讨论]C++类练习
只看楼主
野郎中
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2007-10-15
 问题点数:0 回复次数:1 
[讨论]C++类练习

#include<iostream>
using namespace std;
class V
{ public:
void V_putin();
void V_putout();
private:
float length;
float width;
float height;
float V_v(float,float,float);
}v1,v2,v3;

void main()
{ v1.V_putin();
v1.V_putout();
}

void V::V_putin()
{ cout<<"请输入长方体的长、宽、高:";
cin>>length>>width>>height;
cout<<endl;
}

float V::V_v(float a,float b,float c)
{ float y;
y=a*b*c;
return y;
}

void V::V_putout()
{ cout<<"长、宽、高分别是:"<<length<<','<<width<<','<<height<<endl<<"该长方体的体积是:"<<V_v(length,width,height)<<endl;
}

搜索更多相关主题的帖子: float void 练习 
2007-10-15 22:26
dingpin
Rank: 1
等 级:新手上路
帖 子:281
专家分:0
注 册:2007-9-29
得分:0 
&lt;&lt; 是什么意思呀?

我的地盘我做主!
2007-10-16 11:03



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-177941-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023828 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved