员工培训方案实施的准备阶段需要做的工作包括()。
A.落实场所与设施
B.介绍培训师
C.通知培训对象
D.联系培训师
E.正式培训
参考答案:A, C, D
飧泄是指()
A.大便稀溏
B.泄泻无度
C.大便完谷不化
D.下利脓血
E.濡泻
以下程序的功能是从键盘输入若干个学生的考试成绩,统计并输出最高分和最低分,当输 入负数时结束输入,输出结果。请补充完整下列程序段。 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