子宫内膜癌术后复发的时间在()。
A.1年
B.1.5年
C.2年
D.2.5年
E.3年
参考答案:E
关于乙型肝炎的相关肾炎,以下归程说法正确:()
A.女性患者明显多于男性
B.常有非肾性血尿
C.病理类型以膜性肾病最为常见
D.激素治疗敏感
E.半数患儿血清C3增高
以下程序的功能是从键盘输入若干个学生的考试成绩,统计并输出最高分和最低分,当输 入负数时结束输入,输出结果。请补充完整下列程序段。 Dim x,amax,amin As Single x=InputBox("Enter a score") amax=x amin=x Do While【】 If x>amax Then amax=x End If If【】Then amin=x End If x=InputBox("enter a score") Loop Print"max=";amax,"min=";amin