標籤:

一個計科小白的每日編程打卡18.08.02

一個計科小白的每日編程打卡18.08.02

/*C++Box.cpp ---使用函數重載計算長方體體積*/#include<iostream>using namespace std;class Box{public: Box(); Box(int h,int w,int len):height(h),width(w),length(len){}; int volume();private: int height; int width; int length;};Box::Box(){ height=10; width_=10; length=10;}int Box::volume(){ return(height*width*length);}int main(){ Box box1; cout<<"The volume of box1 is "<<box1.volume()<<endl; Box box2(15,30,25); cout<<"The volume of box1 is "<<box2.volume()<<endl; getchar(); return 0;}

/*The results are as follows:*/


推薦閱讀:

用通俗的比喻梳理「面向對象」的概念
為什麼編碼仍然是未來最重要的工作技巧
Leetcodes Solutions 22 Generate Parentheses
編譯原理(三)
為生命重新編程(12.10.17)

TAG:編程 |