单项选择题

设有如下程序:
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. 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.以上都不对