17 lines
324 B
C
17 lines
324 B
C
#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;
|
|
}
|