#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; }