📄 王婆卖瓜.cpp
字号:
#include<iostream.h>
#include"watermelon.h"
void main()
{
watermelon w1(3.0); //
w1.display();
watermelon::total_disp();
watermelon w2(5.0); //
w2.display();
watermelon::total_disp();
watermelon w3(7.0); //
w3.display();
watermelon::total_disp();
w2.watermelon::~watermelon(); //
watermelon::total_disp();
}
/*
The watermelon weight is: 3
Total weight is: 3
Total number is: 1
The watermelon weight is: 5
Total weight is: 8
Total number is: 2
The watermelon weight is: 7
Total weight is: 15
Total number is: 3
Total weight is: 10
Total number is: 2
Press any key to continue*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -