(float a, float b, float c)
| 67 | } |
| 68 | |
| 69 | public static float max(float a, float b, float c) |
| 70 | { |
| 71 | // return Math.max(Math.max(a, b), c); // take consider NAN condition |
| 72 | return a > b ? (a > c ? a : c) : (b > c ? b : c); |
| 73 | } |
| 74 | |
| 75 | public static int max(int a, int b, int c) |
| 76 | { |
no outgoing calls
no test coverage detected