内扰含有不包括()等室内热湿源。
A、室内设备
B、照明
C、人员
D、邻室的空气温度
参考答案:D
2007年我市初中毕业生约为3.94万人,把3.94万用科学记数表示且保留两个有效数字为[ ]
A.4.0×104
B.3.9×104
C.39×104
D.4.0万
以下程序的功能是从键盘输入若干个学生的考试成绩,统计并输出最高分和最低分,当输 入负数时结束输入,输出结果。请补充完整下列程序段。 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