面向对象初探
学习了C++的类和对象,感觉面向对象编程挺有意思的。在牛客网找了几道相关的题练手,虽然写得很慢,但慢慢有了点感觉
#include<bits/stdc++.h>
using namespace std;
class Box{
private :
int length;
int wide;
int high;
public:
Box(int l,int w,int h):length(l),wide(w),high(h){}
int V(){
return length*wide*high;
}
};
int main(){
int l,w,h;
cin>>l>>w>>h;
Box box(l,w,h);
cout<<box.V()<<endl;
return 0;
}