Which of the following statements will assign the largest value of three integer variables a, b, and c
to the integer variable maximum?
* maximum = Math.max(a, b);
maximum = Math.max(maximum, c); maximum = Math.max(a, b) + Math.max(b, c) + Math.max(a, c); maximum = Math.max(a, b, c);
* maximum = Math.max(a, b); maximum = Math.max(b, c); maximum = Math.max(a, c);