(float a, float b, float c)
| 78 | } |
| 79 | |
| 80 | public static float min(float a, float b, float c) |
| 81 | { |
| 82 | // return Math.min(Math.min(a, b), c); // take consider NAN condition |
| 83 | return a < b ? (a < c ? a : c) : (b < c ? b : c); |
| 84 | } |
| 85 | |
| 86 | public static int min(int a, int b, int c) |
| 87 | { |
no outgoing calls
no test coverage detected