1if (a > b && a > c) {
2 //Here you determine second biggest, but you know that a is largest
3}
4
5if (b > a && b > c) {
6 //Here you determine second biggest, but you know that b is largest
7}
8
9if (c > b && c > a) {
10 //Here you determine second biggest, but you know that c is largest
11}
12