17 lines
270 B
C++
17 lines
270 B
C++
#ifndef TRIANGLEH
|
|
#define TRIANGLEH
|
|
|
|
class Triangle {
|
|
private:
|
|
double base;
|
|
double height;
|
|
|
|
public:
|
|
void SetBase(double userBase);
|
|
void SetHeight(double userHeight);
|
|
double GetArea() const;
|
|
void PrintInfo() const;
|
|
};
|
|
|
|
#endif
|