public class selection4 { public static void main(String[] args) { // Syntax 4: // no $else$ // if (c1) // s1; // else if (c2) // s2; int x = -1; if (x > 0) System.out.println("pos"); else if (x <= 0) System.out.println("non-pos"); } }