下面程序段输出的是什么? 
int a=3; 
int b=1; 
if(a = b)  System.out.println("a="+a);
A a=1
B a=3
C 编译错误,没有输出
D 正常运行,但没有输出