填空题

以下程序的功能是:从键盘上输入若干个学生的考试分数,当输入负数时结束输入,然后输出其中的最高分数和最低分数。在【12】和【13】处填入适当的内容,将程序补充完整。 Private Sub Form_Click() Dim x As Single,amax As Single,amin As Single x=InputBox("Enter a score") amax=x amin=x Do While 【12】 If x>amax Then amax=x End If If 【13】 Then amin=x End If x=InputBox("Enter a score") Loop Print"Max=";amax,"Min=";amin End Sub

【参考答案】

[12]x>=0 [13]x<amin或amin>x