ajout du fichier boucles suite
This commit is contained in:
parent
29ee1f20bf
commit
b944b5ad5e
36
DEV1.1/boucles_suite.c
Normal file
36
DEV1.1/boucles_suite.c
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
/*1)
|
||||||
|
int main (void){
|
||||||
|
int chance;
|
||||||
|
int tentative = 5;
|
||||||
|
int entrer = 0;
|
||||||
|
int x = 24;
|
||||||
|
|
||||||
|
printf("entrer un nobre entre 1 et 100 vous aurez 5 essaie pour trouver :");
|
||||||
|
|
||||||
|
for (chance = 0; chance < 5; chance++){
|
||||||
|
|
||||||
|
tentative--;
|
||||||
|
scanf("%d", &entrer);
|
||||||
|
|
||||||
|
if (entrer > x){
|
||||||
|
|
||||||
|
printf("c'est - il vous reste ");
|
||||||
|
printf("%d",tentative);
|
||||||
|
printf(" chance\n");
|
||||||
|
|
||||||
|
}else if(entrer < x){
|
||||||
|
|
||||||
|
printf("c'est + il vous reste ");
|
||||||
|
printf("%d",tentative);
|
||||||
|
printf(" chance\n");
|
||||||
|
|
||||||
|
}else if( entrer == x){
|
||||||
|
|
||||||
|
printf("felicitation vous avez deviner le numero secret\n");
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}*/
|
@ -23,14 +23,13 @@
|
|||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
int main(void){
|
/*int main(void){
|
||||||
int n = 0;
|
|
||||||
int num = 0;
|
int num = 0;
|
||||||
double x = 0;
|
double x = 0;
|
||||||
int table = 0;
|
int table = 0;
|
||||||
|
|
||||||
printf("Entrez un réel : ");
|
printf("Entrez un réel : ");
|
||||||
n = scanf("%lf", &x);
|
scanf("%lf", &x);
|
||||||
num = x ;
|
num = x ;
|
||||||
table = num % 3;
|
table = num % 3;
|
||||||
|
|
||||||
@ -47,4 +46,23 @@ int main(void){
|
|||||||
printf("%d \n", num);
|
printf("%d \n", num);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}*/
|
||||||
|
|
||||||
|
int main(void){
|
||||||
|
double x;
|
||||||
|
double y;
|
||||||
|
double z;
|
||||||
|
int un = x;
|
||||||
|
int deux = y;
|
||||||
|
int trois = z;
|
||||||
|
|
||||||
|
printf("entrer 3 reels : \n");
|
||||||
|
scanf("%lf",&x);
|
||||||
|
scanf("%lf",&y);
|
||||||
|
scanf("%lf",&z);
|
||||||
|
|
||||||
|
if ( y > x ){
|
||||||
|
un = y
|
||||||
|
deux = x
|
||||||
|
}else ( z)
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user