Skip to main content
Langage C | Les structures de contrôle

programme qui affiche les nombres paire entre N et M

Avatar
By Mohammed Raji · Published:
Last updated: · No comments
Ecrire un programme qui affiche les nombres paire entre N et M.

Solution:
#include<stdio.h>
int main ()
{
int i,n,m,Np;
printf(" premier méthode:\n");
do
{
printf("saisir les nombres n et m:");
scanf("%i%i",&n,&m);
}
while (n>=m);
for (i=(n+1)/2;i<=m/2;i++)
{
Np=2*i;
printf("%7i\n",Np);
}
system("PAUSE");
return 0;
}

Comments 0

Post a Comment

Cancel