通信资费的定价主体包括( )。
A.居民
B.个人
C.通信企业
D.政府
E.进出口
参考答案:C,D
解析: 通信资费的定价主体:通信企业和政府(包括政府设立的管制机构)。
临床上将脾肿大分为三度,深吸气时,脾下缘()为轻度肿大;()为中度肿大;()为重度肿大。
下面程序段的输出结果是______。public class Test{public 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.编译错误