[填空題] 以下程序的功能是:從鍵盤上輸入若干個學生的考試分數(shù),當輸入負數(shù)時結束輸入,然后輸出其中的最高分數(shù)和最低分數(shù)。請在空白處填入適當?shù)膬热?,將程序補充完整
2021-07-20
[填空題] 以下程序的功能是:從鍵盤上輸入若干個學生的考試分數(shù),當輸入負數(shù)時結束輸入,然后輸出其中的最高分數(shù)和最低分數(shù)。請在空白處填入適當?shù)膬热荩瑢⒊绦蜓a充完整。
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______
If x>amax Then
aman=X
End If
If______Then
amin=x
End If
x=InputBox("Enter a Score")
Loop
Pnnt"Max="; amax, "Min=";amin
End Sub
正確答案:x>=0;x<amin
詞條內容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域專業(yè)人士。