代码拉取完成,页面将自动刷新
同步操作将从 GodOuO/Code_C++ 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#include<iostream>
#include<string>
using namespace std;
/* 立方体类:
求立方体面积,体积
全局函数 成员函数 判断两个立方体是否相等
*/
class Cube
{
public:
void setL(double l){
m_L = l;
}
void setW(double w){
m_W = w;
}
void setH(double h){
m_H = h;
}
double getL(){
return m_L;
}
double getW(){
return m_W;
}
double getH(){
return m_H;
}
double cubeS(){
return (m_H*m_L+m_H*m_W+m_L*m_W)*2;
}
double cubeV(){
return (m_H*m_L*m_W);
}
bool isSame_class(Cube &c){ //成员函数判断
if(m_H==c.getH()&&m_L==c.getL()&&m_W==c.getW()){
cout<<"They are SAME!"<<endl;
return 1;
}
else{
cout<<"A is NOT same as B!" <<endl;
return 0;
}
}
private:
double m_L;
double m_W;
double m_H;
};
bool IsSame(Cube &c1,Cube &c2){ //全局函数判断
if(c1.getH()==c2.getH()&&c1.getL()==c2.getL()&&c1.getW()==c2.getW()){
cout<<"They are SAME!_ByClass"<<endl;
return 1;
}
else{
cout<<"A is NOT same as B!_ByClass" <<endl;
return 0;
}
}
int main(){
Cube c1;
Cube c2;
double h,w,l;
cout<<"Input CubeA's H:"<<endl;
cin>>h;
c1.setH(h);
cout<<"Input CubeA's W:"<<endl;
cin>>w;
c1.setW(w);
cout<<"Input CubeA's L:"<<endl;
cin>>l;
c1.setL(l);
cout<<"CubeA's S: "<<c1.cubeS()<<endl<<"CubeA's V: "<<c1.cubeV()<<endl;
cout<<"Input CubeB's H:"<<endl;
cin>>h;
c2.setH(h);
cout<<"Input CubeB's W:"<<endl;
cin>>w;
c2.setW(w);
cout<<"Input CubeB's L:"<<endl;
cin>>l;
c2.setL(l);
cout<<"CubeB's S: "<<c2.cubeS()<<endl<<"CubeB's V: "<<c2 .cubeV()<<endl;
IsSame(c1,c2);
c1.isSame_class(c2);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。