public class selection3 { public static void main(String[] args) { // Syntax 3: // $else if$ and an $else$ // if (c1) // s1; // else if (c2) // s2; // else // s3 int x = -1; if (x > 0) System.out.println("pos"); else if (x < 0) System.out.println("neg"); System.out.println("zero!"); } }