题型:填空题 标签: for循环语句
题目:
2. 写出下面程序运行的结果:
public class Test{
static boolean f(char c){
System.out.print(c);
return true;
}
public static void main(String[]argv){
int i=0;
for(f('A');f('B')&&(i<2);f('C')){
i++;
f('D');
}
}
}