问:if里写什么条件才能试打印结果为ab
public class ls {
public static void main(String[] args) {
if ( ){
System.out.print("a");
}else {
System.out.print("b");
}
}
}