下列VB程序运行时,在文本框Text1中输入1234,单击命令按钮Command1后,文本框Text1中显示的内容是。该程序使用了结构(填:顺序 / 选择
/ 循环)。
Private Sub Command1_click
( )
Dim n As Integer , x
As Integer
n = Val ( Text1.Text )
x = n Mod 10
n = x * 1000 + n \ 10
Text1.Text = Str ( n )
End Sub
答案:【1】4123【2】顺序