I tried to write an easy program that compares 3 numbers and prints the biggest of them but it keeps printing all 3 of them and I don't get why. Thats my code:
#include <stdio.h>
int main()
{
int x = 10;
int y = 8;
int z = 3;
if((x > y) && (x > z));
{
printf("%d",x);
}
if((y > x) && (y > z));
{
printf("%d",y);
}
if((z > x) && (z > y));
{
printf("%d",z);
}
return 0;
}
Thanks for the help!
Aucun commentaire:
Enregistrer un commentaire