-
Notifications
You must be signed in to change notification settings - Fork 0
/
exo8(transformer_en_carre).cpp
51 lines (45 loc) · 1.38 KB
/
exo8(transformer_en_carre).cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*======================================================
programme élementaire en C++
Auteur: Da Cunha Enzo
Date:../../2022
version:1.0
========================================================*/
// iostream contient la déclaration des fonctions
// d'entrée/sortie que je vais utiliser
#include <iostream> // entete de gestion des E/S
#include <windows.h>
using namespace std; // utilisation de l'espace de nommage
// de la bibliothéque standard
double transformerEnCarre(double xmin, double &xmax, double ymin, double &ymax)
{
double y, x;
y = ymax - ymin;
x = xmax - xmin;
if (x > y)
{
y = (ymax - ymin);
xmax = y + xmin;
}
else if (y > x)
{
x = (xmax - xmin);
ymax = x + ymin;
}
}
/*======================================================
Fonction principal
========================================================*/
int main()
{
double xmin, xmax, ymin, ymax;
SetConsoleOutputCP(1252);
// code endesous
cout << "Entrer xmin, xmax, ymin, ymax de votre rectangle " << endl;
cin >> xmin >> xmax >> ymin >> ymax;
transformerEnCarre(xmin, xmax, ymin, ymax);
cout <<"xmin= "<< xmin << "," <<"xmax= "<< xmax << "," <<"ymin= "<< ymin << "," <<"ymax= "<<ymax << endl;
// Attendons qu'on appui sur une touche pour terminer
cin.get();
cin.ignore();
return EXIT_SUCCESS;
}