求高手指点vb编程 以下程序的运行结果是 private sub command1_click()
求高手指点vb编程以下程序的运行结果是privatesubcommand1_click()fori=1to10GetValueinextiprintGetValue(i)...
求高手指点vb编程
以下程序的运行结果是
private sub command1_click()
for i=1 to 10
GetValue i
next i
print GetValue(i)
End sub
private function GetValue(ByVal a as integer)
static s as integer
s=s+a
GetValue=s
end function 展开
以下程序的运行结果是
private sub command1_click()
for i=1 to 10
GetValue i
next i
print GetValue(i)
End sub
private function GetValue(ByVal a as integer)
static s as integer
s=s+a
GetValue=s
end function 展开
3个回答
展开全部
Private Sub command1_click()
For i = 1 To 10
GetValue i
Next i
Print GetValue(i)
End Sub
Private Function GetValue(ByVal a As Integer)
Static s As Integer
s = s + a
GetValue = s
End Function
'因为s是静态变量,所以每次执行完后s的值会保留
'当i=1 时,调用 GetValue i ,s的值是1,s=s+a=0+1=1
'当i=2 时,调用 GetValue i ,s的值是1,s=s+a=1+2=3
'当i=3 时,调用 GetValue i ,s的值是3,s=s+a=3+3=6
'当i=4 时,调用 GetValue i ,s的值是6,s=s+a=6+4=10
'当i=5 时,调用 GetValue i ,s的值是10,s=s+a=10+5=15
'当i=6 时,调用 GetValue i ,s的值是15,s=s+a=15+6=21
'当i=7 时,调用 GetValue i ,s的值是21,s=s+a=21+7=28
'当i=8 时,调用 GetValue i ,s的值是28,s=s+a=28+8=36
'当i=9 时,调用 GetValue i ,s的值是36,s=s+a=36+9=45
'当i=10 时,调用 GetValue i ,s的值是45,s=s+a=45+10=55
'当i=11时,循环结束,此时i的值为11
'执行print GetValue(i)
'此时调用 GetValue i ,s的值是55,s=s+a=55+11=66
'所以最后输出66
'同样的道理,如果你再次点击,s的值开始为66,最后将输出132,
'依次类推,运行程序后,每次单击,输出结果依次为66,132,198,264..............
2014-11-14 · 知道合伙人软件行家
yfcp
知道合伙人软件行家
向TA提问 私信TA
知道合伙人软件行家
采纳数:1748
获赞数:5545
有多年网站建设相关工作经验。熟悉ASP、ASP.net、VB、JavaScript、HTML等语言和CSS、Ajax等相关技术。
向TA提问 私信TA
关注
展开全部
运行结果是:66
相当于从1 加到 11 。
Private Sub command1_click()
For i = 1 To 11
x = i + x
Next
Print x
End Sub
相当于从1 加到 11 。
Private Sub command1_click()
For i = 1 To 11
x = i + x
Next
Print x
End Sub
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
程序运行结果是 66
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询