blob: d3eca66e170c62a4ea8b76e3904615a7674ba907 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "forme.h"
class Cercle:Forme {
private:
int rayon;
public:
Cercle(int x, int y, int r);
~Cercle();
void setRayon(int r);
int getRayon();
double getAire();
double getPerimetre();
void afficher(ostream & s);
};
|