01 02 03 04 05 06 07 08 09
public static int f (int x, int y, int z) { int m = x; if (m < y) { m = y; } if (m < z) { m = z; } return m; }