Developpement/23DEV1.1/TPS1/TP01/07-Boucles/sequence2.c

15 lines
265 B
C
Raw Permalink Normal View History

2024-12-09 11:53:11 +01:00
#include <stdio.h>
#include <stdlib.h>
int main(void) {
int x,y;
printf("choisissez un entier: ");
scanf("%d", &x);
printf("choisissez un second entier: ");
scanf("%d", &y);
while(x <= y){
printf("%d\n",x);
x = x+1;
}
return EXIT_SUCCESS;
}