First commit
This commit is contained in:
17
IUT/Info1/TD/Exercices/5.3_surface_cyl/main.cpp
Normal file
17
IUT/Info1/TD/Exercices/5.3_surface_cyl/main.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user