求解这个问题的答案?
public class test{
static boolean foo(char c ){
system.out.print(c);
return true;
}
public static void main(sting[] args){
int i =0;
for(foo(A);foo(B)&&(i<2;foo(C))){
i++;
foo(D);
}
}
}
这里没环境,求好心人运行下贴出结果,在线等。速度给分的
------解决方案--------------------
楼主是写成这样?
public class Test {
static boolean foo(char c) {
System.out.print(c);
return true;
}
public static void main(String[] args) {
int i = 0;
for (foo('A'); foo('B') && i < 2; foo('C')) {
i++;
foo('D');
}
}
}