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

📄 can.cpp

📁 一本语言类编程书籍
💻 CPP
字号:
// Can.cpp
#include "Can.h"
#include <iostream>

Can::Can(double canDiameter, double canHeight) :
                                  diameter(canDiameter), height(canHeight) {}

                                  // Function to calculate the volume of a Can object
double Can::volume() const {
  return pi * diameter * diameter * height / 4;
}

Can::~Can() {
  std::cout << "Can destructor" << std::endl;
}

// Definitions for the Can class
const double Can::pi = 3.14159265;                  // Initialize static member

⌨️ 快捷键说明

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