int x; if (a <= b && a <= c) x = a; return z; else if (b <= a && b <= c) x = b; return b; else (c <= a && c <= b) x = c; return c;