当前位置:   article > 正文

C++ 矩形类

C++ 矩形类

思维导图

 

 

  1. #include <iostream>
  2. using namespace std;
  3. class Rect
  4. {
  5. private:
  6. int width;
  7. int height;
  8. public:
  9. void init(int w,int h)
  10. {
  11. width=w;
  12. height=h;
  13. }
  14. void set_w(int w)
  15. {
  16. width=w;
  17. }
  18. void set_h(int h)
  19. {
  20. height=h;
  21. }
  22. void show()
  23. {
  24. cout << "perimeter = " << (2*width+2*height) << endl;
  25. cout << "area = " << width*height << endl;
  26. }
  27. };
  28. int main()
  29. {
  30. Rect rect;
  31. rect.init(1,1);
  32. rect.set_h(4);
  33. rect.set_w(5);
  34. rect.show();
  35. return 0;
  36. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/252548
推荐阅读
相关标签
  

闽ICP备14008679号