SAE11_2023/archive/Decouverte.c
2023-11-20 15:04:12 +01:00

49 lines
771 B
C

#include<stdlib.h>
#include<stdio.h>
#include<graph.h>
#include<time.h>
#define H 40
#define L 60
int main(void){
/*partie graphique*/
InitialiserGraphique();
CreerFenetre(10,10,1700,1000);
couleur c;
c=CouleurParNom("green");
ChoisirCouleurDessin(c);
int tab[H][L];
int i,j,posx=0,posy=0;
for(i=0;i<H;i++){
for(j=0;j<L;j++){
tab[i][j]=0;
}
}
for(i=0;i<H;i++){
for(j=0;j<L;j++){
if(tab[i][j]==0){
c=CouleurParNom("green");
ChoisirCouleurDessin(c);
RemplirRectangle(posx,posy,20,20);
}
posx=posx+20;
}
posx=0;
posy=posy+20;
}
posx=0;
posy=0;
c=CouleurParNom("yellow");
ChoisirCouleurDessin(c);
for(i=0;i<10;i++){
RemplirRectangle(posx,20,20,20);
posx=posx+20;
}
while(1){
}
}