2023-11-21 12:20:06 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <graph.h>
|
|
|
|
|
|
|
|
int AfficherRectangle(){
|
|
|
|
InitialiserGraphique();
|
|
|
|
CreerFenetre(10,10,1500,1000);
|
|
|
|
DessinerRectangle(20,20,1450, 950);
|
|
|
|
Touche();
|
|
|
|
FermerGraphique();
|
|
|
|
}
|
|
|
|
int main(){
|
|
|
|
AfficherRectangle();
|
|
|
|
ChoisirCouleurDessin(104,225,55);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|