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

📄 triangle.cpp

📁 BigC++的源码
💻 CPP
字号:
#include <iostream>

using namespace std;

/**
   A class that describes triangle shapes like this:
   []
   [][]
   [][][]
   . . .
*/   
class Triangle
{
public:
   Triangle(int w);
   int get_area() const;
private:
   int width;  
};

/**
   Constructs a triangle with a given width.
   @param w the width of the triangle base
*/
Triangle::Triangle(int w)
{
   width = w;
}

/**
   Computes the area of the triangle shape.
   @return the area
*/
int Triangle::get_area() const
{
   if (width <= 0) return 0;
   if (width == 1) return 1;
   Triangle smaller_triangle(width - 1);
   int smaller_area = smaller_triangle.get_area();
   return smaller_area + width;
}

int main()
{
   Triangle t(4);
   cout << "Area: " << t.get_area() << "\n";
   return 0;
}

⌨️ 快捷键说明

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