Private Sub Command1_Click()Dim total As Integertotal = s(1) + s(2)Print totalEnd SubPrivate Function s(m As Integer) As IntegerStatic x As IntegerFor i = 1 To mx = x + 1Next is = xEnd Function单击Command1三次的结果

来源:学生作业帮助网 编辑:作业帮 时间:2024/04/30 01:11:58
Private Sub Command1_Click()Dim total As Integertotal = s(1) + s(2)Print totalEnd SubPrivate Function s(m As Integer) As IntegerStatic x As IntegerFor i = 1 To mx = x + 1Next is = xEnd Function单击Command1三次的结果

Private Sub Command1_Click()Dim total As Integertotal = s(1) + s(2)Print totalEnd SubPrivate Function s(m As Integer) As IntegerStatic x As IntegerFor i = 1 To mx = x + 1Next is = xEnd Function单击Command1三次的结果
Private Sub Command1_Click()
Dim total As Integer
total = s(1) + s(2)
Print total
End Sub
Private Function s(m As Integer) As Integer
Static x As Integer
For i = 1 To m
x = x + 1
Next i
s = x
End Function
单击Command1三次的结果

Private Sub Command1_Click()Dim total As Integertotal = s(1) + s(2)Print totalEnd SubPrivate Function s(m As Integer) As IntegerStatic x As IntegerFor i = 1 To mx = x + 1Next is = xEnd Function单击Command1三次的结果
第一次单击时,进入s,定义一次x(以后都不会再重新定义,就是说Static使得x在程序一运行时就有了,三次单击都用的是同一个x),s(1)=0+1=1 (x=1),s(2)=(x+1)+1=3 (x=3),total=4;(s、x值为最后一次循环的结果值)
第二次单击时,进入s,用已存在的x(并没有定义一个新的x,x为上一次单击后的x值,即为3),s(1)=x+1=4 (x=4),s(2)=(x+1)+1=6 (x=6),total=10;
第二次单击时,进入s,s(1)=x+1=7 (x=7),s(2)=(x+1)+1=9 (x=9),total=16;
这主要就是理解Static的作用,静态变量全局运行就只有一个

Command1.Caption是什么意思Private Sub Form_Load() Text1.Text = 0 Text2.Text = 0 Text3.Text = 0 Command1.Caption = 计算 End Sub其中的command1.caption 是什么意思啊 菜鸟请教高手 说详细点 Private Sub 与 Sub的区别 解一道vb函数题,private sub command1 _click(),for i =1to4 ,for j =1to3 ,x=3 ,for k=1to 2,x=x+3,n...解一道vb函数题,private sub command1 _click(),for i =1to4 ,for j =1to3 ,x=3 ,for k=1to 2,x=x+3,next k ,next j ,next i ,text1 .text =str(x 在窗体上画一个名称为Command1的命令按钮,然后编写如下事件过程:Private Sub Command1_Click() x = -5 If Sgn(x) Then y = Sgn(x ^ 2) Else y = Sgn(x) End If Print y End Sub 程序运行后,单击命令按钮,窗体上显示的是 A VB 请大家分析一下我写的代码 哪里错误static a,b,c as integera=3:b=4:c=5private sub command1 _click()msgbox a*2+bend sub为什么答案上写的是用 dim myval 而且使用的是 const myvla Debug.Print Private Sub Form_Click()和Private Sub Command1_Click()有什么区别?什么时候用Form?什么时候用Command Private Sub Form_click()得到一组随机变量,怎样用到Private Sub Command1_Click()中去啊 当条件为真时执行Then后面的语句或语句组,否则执行后续语句 这句话怎么理解?谢谢我是新手,拜托各位高手!Private Sub Command1_Click()If Command1.Caption = 清除 ThenStoreString = Text1.TextText1.Text = '清 在窗体(Name属性为Form1)上画两个文本框(其Name属性分别为Text1和Text2)和一个命令按钮(Name 属性为Command1),然后编写如下两个事件过程:Private Sub Command1_Click()a = Text1.Text + Text2.Textb = Text1.Text Private Sub Command1_Click()Dim total As Integertotal = s(1) + s(2)Print totalEnd SubPrivate Function s(m As Integer) As IntegerStatic x As IntegerFor i = 1 To mx = x + 1Next is = xEnd Function单击Command1三次的结果 这个vb计算题我算出来和答案不一样,请高手给我看看哪里出错了在窗体上画一个名称为Command1的命令按钮,然后编写如下事件过程: Private Sub Command1_Click() Static x As Integer Cls For i=1 To 2 y=y+x x=x+2 VB里的sub单词是什么意思,比如private sub……、end sub Dim a1(10),a2(10) For i=1to10 a1(i)=3*i a2(i)=a1(i)*3 Next i Text1.Text=Str(a2(i/2-0.1))Private Sub Command1-Click()Dim a1(10),a2(10) For i=1to10a1(i)=3*i a2(i)=a1(i)*3Next iText1.Text=Str(a2(i/2-0.1))End Sub程序运行后显示(B)A 36 B 45 C 54 英语翻译控制标签移动private sub timer1_timer()if label1.left VB里的“Private Sub Command1_Click()”是什么意思?那个横, Private Sub Form_Load() 的意思具体是什么啊,sub的意思是什么啊? 英语翻译Private Sub Combo1_Click()Text1.SetFocusOption1.Value = TrueText1.Locked = FalseEnd Sub Private Sub Text1_Click() If Text1.Text = 请输入 Then Text1.Text = End Sub这条语句的作用是什么Private Sub Text1_Click()If Text1.Text = 请输入 Then Text1.Text = End Sub