modif menu et changement de nom de variable

This commit is contained in:
morinl 2022-12-01 16:04:09 +01:00
parent d403fe3ff2
commit e0acb080a0
2 changed files with 4 additions and 4 deletions

2
main.c
View File

@ -9,7 +9,7 @@
int main(void){
int temps,coucou;
int test=menu();
int nb_paires=menu();
char tableautemps[50];
tirage_aleatoire();
FermerGraphique();

6
menu.c
View File

@ -7,7 +7,7 @@
int menu(void){
int xpos;
int ypos;
int i=4,j;
int i=4,j=3;
char choix[50];
InitialiserGraphique();
CreerFenetre(0,0,1024,576);
@ -23,13 +23,13 @@ int menu(void){
ChargerImage("Images/Start.png",375,400,0,0,280,79);
c=CouleurParComposante(255,255,255);
ChoisirCouleurDessin(c);
RemplirRectangle(300,300,300,50);
RemplirRectangle(495,320,40,40);
while(1){
if(i!=j){
snprintf(choix,50,"%d",i);
c=CouleurParComposante(255,255,255);
ChoisirCouleurDessin(c);
RemplirRectangle(300,300,300,50);
RemplirRectangle(495,320,40,40);
c=CouleurParComposante(0,0,0);
ChoisirCouleurDessin(c);
EcrireTexte(500,350,choix,2);