对于下列代码,叙述正确的是( )public class Test030203 {public static void main(String[] args) {boolean boo=false;if(boo=true){System.out.print("hello");System.out.print("你好");}else{System.out.print("ok");System.out.print("yes");}}}
A. 出现编译错误
B. 程序的输出结果是hello你好
C. 程序的输出结果是ok
D. 程序的输出结果是okyes