道德教育
参考答案:道德教育主要是通过道德知识的学习、道德行为的训练和道德情感的体验,培养学生的道德能力,形成学生的道德信念和良好的道德行为习惯。
下面程序段的输出结果是______。public class Testpublic static void main(String args[ ])int x,y;x=(int)Math.sqrt(5/2)+(int)Math.random( )*5/2;y=(int)Math.sqrt(3/2)+(int)Math.random( )*3/2;if(x>y) System.out.println("x>y");else if(x==y) System.out.println("x=y");else System.out.println("x<y");
A.x>y
B.x=y
C.x<y
D.编译错误