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

langage c ~ Les structures de contrôle

Avatar
By Mohammed Raji · Published:
Last updated: · No comments
Ecrire un programme en C qui permet de calcule et affiche le
maximum des deux nombres entiers.

#include <stdio.h>
int main()
{
int a,b,max;
printf("saisir SVP deux nombres a et b:");
scanf("%i%i",&a,&b);
if (a>b)
max=a;
else max=b;
printf("le maximum de %i et %i est max=%i\n",a,b,max);
system("PAUSE");
return 0;
}

Comments 0

Post a Comment

Cancel