17 lines
267 B
C++
17 lines
267 B
C++
#include "functions.h"
|
|
|
|
int main() {
|
|
float rayon;
|
|
float perimetre;
|
|
float surface;
|
|
|
|
Presentation();
|
|
|
|
rayon = saisieRayon();
|
|
perimetre = Perimetre(rayon);
|
|
surface = Surface(rayon);
|
|
|
|
afficherResultats(perimetre, surface);
|
|
|
|
return 0;
|
|
} |