-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTriangle.cpp
39 lines (36 loc) · 1.13 KB
/
Triangle.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include "Triangle.h"
// For more on Doxygen comments, see:
// https://github.com/cme212/course/blob/master/notes/lecture-03/specifications.md
namespace ds {
/**
* @brief Calculate the area of the triangle.
*
* @return int The area of the triangle.
*/
int Triangle::area() const {
// TODO: Implement the area function.
// Note: width and height are equal for a right triangle
}
/**
* @brief Print the triangle.
*
*/
void Triangle::print() const {
// TODO: Implement the print function.
// * BASIC:
// * Print the width / height of the triangle
// * BONUS:
// * Print the shape of the triangle using the width / height
// * For example, if the width / height is 3, print:
// * *
// * **
// * ***
// * For example, if the width / height is 2, print:
// * -
// * --
// * Try:
// * Adding color (random color per character?)
// * Adding a border / empty middle
// * Adding a fill
}
} // namespace ds