⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 prog12_07.cpp

📁 一本语言类编程书籍
💻 CPP
字号:
// Program 12.7 Using the this pointer   File: prog12_07.cpp
#include <iostream>
#include "Box.h"

using std::cout;
using std::endl;

int main() {
  cout << endl;

  Box firstBox(17.0, 11.0, 5.0);
  Box secondBox(9.0, 18.0, 4.0);

  cout << "The first box is "
       << (firstBox.compareVolume(secondBox) >= 0 ? "" : "not ")
       << "greater than the second box."
       << endl;

  cout << "Volume of first box = "
       << firstBox.volume()
       << endl;

  cout << "Volume of second box = "
       << secondBox.volume()
       << endl;

  return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -