// "Merge sequential 'if' statements" "true-preview" class Test { public static void main(String[] args) { if (args.length == 1) { return; // c1 }//c2 else if (args.length == 2) { return; //c3 } System.out.println(); } }