First commit

This commit is contained in:
2026-04-08 20:11:20 +02:00
parent 10fe469c10
commit 79f15536a1
861 changed files with 135610 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#include <iostream>
#include "functions.h"
using namespace std;
void Presentation() {
cout << "Cet algortihme calcule le périmètre et la surface d'un disque de rayon saisi" << endl;
}
void afficherResultats(float perimetre, float surface) {
cout << "Perimètre : " << perimetre << "u.a." << endl;
cout << "Surface : " << surface << "u.a.²" << endl;
}
float saisieRayon() {
float rayon;
cout << "Saisir une rayon" << endl;
cin >> rayon;
return rayon;
}