题库 高中信息

题干

   要求编写一个“查找大于h的最小身高”的VB程序,功能如下:在文本框Text1中依次输入各个人身高(数据都用逗号分隔并以逗号结尾),文本框Text2中输入身高值h,单击“查找”按钮Command1后,在Label3上显示大于h的最小身高值。例如,五个人身高为1.65,1.75,1.85,1.73,1.72,输入格式如图b所示。程序设计界面和运行界面分别如左图和右图所示。

 
(1)要使程序运行时,清空Label3上的内容,可在Form_Load事件过程中添加语句________(单选,填字母:
A.Label3.text="" /B.Label3.Caption = "" /C.Label3.Clear)。
(2)实现上述功能的VB程序如下,请在划线处填入合适代码。
Private Sub Command1_Click()
Dim i As Integer, k As Integer, s As String, ch As String
Dim h As Single, temp As Single, min As Single
s =__________
h = Val(Text2.Text)
i = 1: temp = 0: k = 0
min = 0: flag = True
Do While i <= Len(s)
ch = Mid(s, i, 1)
If ch <> "," Then
____________
Else
temp = Val(Mid(s, i - k, k))
If temp > h Then
If flag Or temp < min Then min = temp:___________
End If
k = 0
End If
i = i + 1
Loop
Label3.Caption = "大于" + Str(h) + "的最小的身高是:" + Str(min)
End Sub
(3)运行该程序,若输入数据为“1.65,1.75,1.85,1.73,1.72”,则程序结束时,变量min的值为______。
上一题 下一题 0.99难度 填空题 更新时间:2019-05-10 02:08:48

答案(点此获取答案解析)

同类题2

日期判断:从文本框Text1输入一个8位数字表示的日期,其中第1到4位表示年(第1位确定不为零),第5到6位表示月,第7到8位表示日。单击“判断”按钮,判断该日期是否合法,将结果依次输出到列表框List1。程序界面如下图所示:
提示:年份值符合下列两种情况之一的是闰年。
1.年份是4的倍数,但不是100的倍数;
2.年份是400的倍数。

(1)观察程序代码,可知“判断”按钮的对象名为 。(单选,填字母:
A.Text1/B.List1/C.Command1/D.Judge/E.判断)
(2)为实现上述功能,请在划线处填入合适的代码。
Private Sub Judge_Click()
Dim riqi As String, st As String
Dim year As Integer, month As Integer, day As Integer
Dim rn As Boolean, hefa As Boolean
riqi = Text1.Text
year =" Val(Mid(riqi," 1, 4))
month =" Val(Mid(riqi," 5, 2))
day =        ‘第①处
st =" Str(year)" + "年" + Str(month) + "月" + Str(day) + "日"
rn = False  ‘用于判断是否为闰年
If  Then rn = True  ‘第②处
If year Mod 4 =" 0" And year Mod 100 <> 0 Then rn = True
hefa = True  ‘用于判断是否为合法日期
If month =" 0" Or month > 12 Then hefa = False
If day =" 0" Then hefa = False
If (month =" 1" Or month =" 3" Or month =" 5" Or month =" 7" Or  ’与下一行语句同行
month =" 8" Or month =" 10" Or month =" 12)" And day > 31 Then hefa = False
If (month =" 4" Or month =" 6" Or month =" 9" Or month = 11) ’与下一行语句同行
And day > 30 Then hefa = False
If     Then hefa =" False" ’第③处,判断闰年2月的天数是否合法
If month =" 2" And Rn =" False" And day > 28 Then hefa = False
If hefa =" True" Then st =" st" + " 合法日期" Else st =" st" + " 非法日期"
List1.AddItem st
End Sub