How to search for the biggest number, in a set of integers (cat1, cat2, cat3, cat4) I code this, contemplating every alternative, except for the == alternatives (longer code!!) Is there a more efficient, or simpler way to do it, than making an IF satement for every possible solution? If the number of numbers is bigger? (e.g. 10!!!!) Thanks. This is my code
if (cat1 > cat2 && cat1> cat3 && cat1>cat4)
printf("cat 1 is the biggest", cat1);
if (cat2 > cat1 && cat2> cat3 && cat2>cat4)
printf("cat 2 is the biggest", cat2) ;
if (cat3 > cat1 && cat3> cat2 && cat3>cat4)
printf("cat 3 is the biggest", cat3) ;
if (cat4 > cat1 && cat4> cat2 && cat4>cat3)
printf("cat 4 is the biggest", cat4);
int cat[4]={...}; int highest=cat[0]; for(i=1;i<4;i++) if (highest<cat[i]) highest=cat[i];? – KingsIndian Oct 8 '12 at 20:12