3.下列VB程序運(yùn)行時(shí),在文本框Text1中輸入1234,單擊命令按鈕Comand1后,文本框Text1中顯示的內(nèi)容是
.該程序使用了
結(jié)構(gòu)(填:順序/選擇/循環(huán)).
Private Sub Command1_click ( ?。?br />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.