单选题 窗体上有1个名称为Command1的命令按钮;1个名称为List1、没有列表项的列表框。编写如下程序:Private Sub Command1_Click()Dim x As String,s As String,temp As StringDim i As IntegerX=InputBox("输入字符串","输入")If x< >""ThenFor i=Len(x)To 1 Step-1S=Mid(x,i,1)If s< >""Thentemp=S+tempElseList1.AddItem temps=""temp=""End IfNextList1.AddItem tempElseMsgBox"输入内容为空!"End IfEnd Sub程序运行后,单击命令按钮Command1,并输入“Happy new year”,则在List1中显示的内容为
【正确答案】 A
【答案解析】解析:List1.AddItem可以为列表框添加列表项。For循环中通过Mid函数从字符串中倒序取出字符,碰到空格时添加新列表项。选A。