19 lines
319 B
C
19 lines
319 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(void) {
|
|
int reel1;
|
|
int reel2;
|
|
|
|
printf("Saisissez un premier réel : ");
|
|
scanf("%d", &reel1);
|
|
printf("Saisissez un second réel : ");
|
|
scanf("%d", &reel2);
|
|
|
|
do {
|
|
printf("%d\n", reel1);
|
|
reel1 += 1;
|
|
} while (reel1<=reel2);
|
|
return EXIT_SUCCESS;
|
|
}
|