30 lines
548 B
C
30 lines
548 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
|
|
{
|
|
|
|
nombre1 = nombre1 + 1;
|
|
do
|
|
{
|
|
|
|
printf("%d\n", nombre1);
|
|
nombre1 = nombre1 + 1;
|
|
} while (nombre1 < nombre2);
|
|
}
|
|
} |