【单选题】设有如下程序: public class Sun { public static void main (String args[ ]) { int x,y x= (int) Math.sqrt (2) /2+ (int) Math.random ()*2/2 y= (int) Math.sqrt (3) /3+ (int) Math.random ()*3/3 if (x>y) System.ou...
【单选题】设有如下程序: public class Sun { public static void main(String args[ ]) { int x,y x=4 y=0 if(Math.pow(x,2)==16) y=x if(Math.pow(x,2)<15) y=1/x if(Math.pow(x,2)>15) y=(int)Math.pow(x,2)+1 System.out.println...