30 lines
516 B
C
30 lines
516 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
int main(void)
|
|
{
|
|
int nombre1 = 0;
|
|
int nombre2 = 0;
|
|
|
|
printf("Saisissez un nombre entier :\n");
|
|
scanf("%d", &nombre1);
|
|
|
|
printf("Saisissez le second nombre :\n");
|
|
scanf(" %d", &nombre2);
|
|
|
|
if (nombre1 > nombre2)
|
|
{
|
|
|
|
printf("Erreur : le premier nombre est supérieur au second. \n");
|
|
}
|
|
else
|
|
{
|
|
|
|
while (nombre1 < nombre2-1)
|
|
|
|
{
|
|
nombre1++;
|
|
|
|
printf("%d\n", nombre1);
|
|
}
|
|
}
|
|
} |