单项选择题
下面程序段的输出结果为______。
public class Test
public static void main(String args[])
booleana, b, C;
a=(3<5);
b= (a==true);
System. out. println( "a= "+a+"b="+b);
c=(b==false);
System. out. println ("b="+b+"c="+c);
A.a=true b=false
b=true c=true
B.a=true b=false
b=true c=false
C.a=true b=true
b=true c=false
D.a=false b=false
b=true c=false