diff --git a/DEV1.1/boucles_suite.c b/DEV1.1/boucles_suite.c new file mode 100644 index 0000000..5d89c6d --- /dev/null +++ b/DEV1.1/boucles_suite.c @@ -0,0 +1,36 @@ +#include +#include + +/*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; + } + } +}*/ diff --git a/DEV1.1/condition.c b/DEV1.1/condition.c index b995e0c..b0d810c 100644 --- a/DEV1.1/condition.c +++ b/DEV1.1/condition.c @@ -23,14 +23,13 @@ return EXIT_SUCCESS; }*/ -int main(void){ - int n = 0; +/*int main(void){ int num = 0; double x = 0; int table = 0; printf("Entrez un réel : "); - n = scanf("%lf", &x); + scanf("%lf", &x); num = x ; table = num % 3; @@ -47,4 +46,23 @@ int main(void){ 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) } \ No newline at end of file