Code to get second largest among three .... considering d case dat 2 can b equal..... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Code to get second largest among three .... considering d case dat 2 can b equal.....

5th Aug 2017, 6:28 AM
Manan Gulyani
2 Answers
+ 2
let's suppose your numbers are a, b, and c. int a, b, c; int max1, max2; max1 = max2 = -1; if(a > max1) { max2=max1; max1=a; }else if(a > max2) max2 = a; if(b > max1) { max2=max1; max1=b; }else if(b > max2) max2 = b; if(c > max1) { max2=max1; max1=c; }else if(c > max2) max2 = c; The maximum values is max1 and the second largest is max2. Keep in mind max1 and max2 must have an initial value lower than all 3 numbers, here, i supposed all numbers are integers, greater than 0. Hopefully this helps
6th Aug 2017, 1:09 PM
Luca
Luca - avatar
0
tysm
10th Aug 2017, 6:03 PM
Manan Gulyani