#include <stdio.h>
#include <stdlib.h>
int main()
{
int a; int b; int c; int premier; int second; int troisieme;
printf(" tapez le nombre numero 1");
scanf("%d",&a);
printf(" tapez le nombre numero 2");
scanf("%d",&b);
printf("tapez le nombre numero 3 ");
scanf("%d",&c);
if(a>=b && a>=c)
{
premier=a;
if (b>=c)
{
second=b;
troisieme=c;
}
else
{
second=c;
troisieme=b;
}
}
else if(b>=c && b>=a)
{
premier=b;
if (a>=c)
{
second=a;
troisieme=c;
}
else
{
second=c;
troisieme=a;
}
}
else if(c>=b && c>=a)
{
premier=c;
if (b>=a)
{
second=b;
troisieme=a;
}
else
{
second=a;
troisieme=b;
}
}
printf("%d >= %d >= %d\n", premier, second, troisieme);
return 0;
}
#include <stdlib.h>
int main()
{
int a; int b; int c; int premier; int second; int troisieme;
printf(" tapez le nombre numero 1");
scanf("%d",&a);
printf(" tapez le nombre numero 2");
scanf("%d",&b);
printf("tapez le nombre numero 3 ");
scanf("%d",&c);
if(a>=b && a>=c)
{
premier=a;
if (b>=c)
{
second=b;
troisieme=c;
}
else
{
second=c;
troisieme=b;
}
}
else if(b>=c && b>=a)
{
premier=b;
if (a>=c)
{
second=a;
troisieme=c;
}
else
{
second=c;
troisieme=a;
}
}
else if(c>=b && c>=a)
{
premier=c;
if (b>=a)
{
second=b;
troisieme=a;
}
else
{
second=a;
troisieme=b;
}
}
printf("%d >= %d >= %d\n", premier, second, troisieme);
return 0;
}
Commentaires
Enregistrer un commentaire