Toggle navigation
电子书
题库
会员
中心
登录
注册
首页
已知程序如下:Private Sub p() Static s As Integer Dim i As Integer For i = 1 To 10 Step 2 s = s + i Next i Print s;End SubPrivate Sub Command1_Click() Call pEnd Sub试问:当三次单击命令按钮后,输出为[______]。
正确答案
答案已经隐藏
温馨提示!
为了让小站的题库持续更新下去,目前一部分题目查看答案和解析需要赞助。总题数
18894
!
支付宝支付
余额支付
本文标签:
已知
程序
如下
Private
Sub
p
Static
s
As
Integer
Dim
i
As
Integer
For
i
1
To
10
Step
2
s
s
i
Next
i
Print
s
End
SubPrivate
Sub
Command1
Click
Call
pEnd
Sub
试问
当
三次
单击
命令
按钮
后
输出
为
上一篇 >
下列程序段的执行结果为___________。Private Sub Form_Click()Dim x(3,5) For i=1 to 3 For j=1 to 5x(i,j)=x(i-1,j-1)+i+jnext j,iPrint x(3,4)End Sub
下一篇 >
单击窗体时,下列程序代码的执行结果为___________。Private Sub Form_Click() x = Int(Rnd) + 5 If x * x > 8 Then y = x * x + 1 If x * x = 9 Then y = x * x * x If x * x < 8 Then y = x * x - 3 Print yEnd Sub
立即
投稿
微信公众账号
微信扫一扫加关注
返回
顶部