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