Question on ifs
Hi, I have the following code: boolean Short = x(); boolean Long = y(); boolean Longer = z(); if (Short ) return "abc"; if (Long) return "def"; if (Longer) return "ghi"; The three bool methods (x, y, z) all do maths on value. I need an additional if statement to retu...