首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
下面不能正确计算 1 + ( 1 + 2 ) + ( 1 + 2 + 3 ) + … + ( 1 + 2 + … + 10 ) 的是
下面不能正确计算 1 + ( 1 + 2 ) + ( 1 + 2 + 3 ) + … + ( 1 + 2 + … + 10 ) 的是
admin
2018-09-19
24
问题
下面不能正确计算 1 + ( 1 + 2 ) + ( 1 + 2 + 3 ) + … + ( 1 + 2 + … + 10 ) 的是
选项
A、 Private Sub Command1_Click()
s = 0 : t = 0
For i = 1 To 10
For j = 1 To i
t = t + j
Next j
s = s + t
Next i
Print s
End Sub
B、Private Sub Command1_Click()
s = 0
For i = 1 To 10
t = 0
For j = 1 To i
t = t + j
Next j
s = s + t
Next i
Print s
End Sub
C、 Private Sub Command1_Click()
s = 0
For i = 10 To 1 Step -1
t = 0
For j = 1 To i
t = t + j
Next j
s = s + t
Next i
Print s
End Sub
D、Private Sub Command1_Click()
s = 0 : t = 0
For i = 1 To 10
t = t + i
s = s + t
Next i
Print s
End Sub
答案
A
解析
选项A,当外层循环变量i=1时,执行内层循环,内层循环变量j=1时,执行结果为t=1,内层循环结束,s=1;当外层循环变量i=2时,执行内层循环,内层循环变量j=1时,t=1+1,内层循环变量j=2时,t=1+1+2,内层循环结束,s=1+t=1+(1+1+2),至此,A选项已经不符合要求。按照同样的方法分析B、C、D选项,均满足题目要求,故正确答案为选项A。
转载请注明原文地址:https://kaotiyun.com/show/yIFp777K
本试题收录于:
二级VB题库NCRE全国计算机二级分类
0
二级VB
NCRE全国计算机二级
相关试题推荐
在窗体上画2个名称分别为Label1和Label2的标签,然后编写如下程序代码:SubS(LAsLabel,ByValaAsInteger)L.Caption="1234"a=a*aEndSubPriv
以下关于文件的叙述中,正确的是
计算机软件的构成是
窗体上有一个名称为Command1的命令按钮。窗体的两个鼠标事件过程如下:PrivateSubForm_MouseUp(ButtonAsInteger,ShiftAsInteger,XAsSingle,YAsSingle)
有如下程序代码:PrivateSubForm_Click()DimaAsIntegera=2Sum=0Fori=1To3Sum=Sum+f(a)Ne
下面不属于软件测试实施步骤的是
假定有以下循环结构:DoUntil条件表达式 循环体Loop则以下正确的描述是( )。
若实体A和B是一对一的联系,实体B和C是多对一的联系,则实体A和C的联系是
有三个关系R、S和T如下:则由关系R和S得到关系T的操作是( )。
某二叉树的前序序列为ABCDEFG,中序序列为DCBAEFG,则该二叉树的深度(根结点在第1层)为
随机试题
Sheisa________andshehasbeenworkinginthehospitalfortwentyyears.
与颈动脉夹层动脉瘤声像图表现无关的是()
数字地球是1998年由()提出的。
城市桥梁工程中,关于有支护基坑喷射混凝土的原材料的表述有误的是()。
遗嘱的形式( )。
教育心理学最常用的研究方法是__。
RunningfortheofficeofthePresidentoftheUnitedStatesisexceptionallyarduousandshouldnotbeundertakenbythe【C1】___
______isregardedasthemostEnglishofallgames.
A、Itisunclearfromthepassage.B、Sheisgoingtobreakupwithherboyfriend.C、Shedoesn’tlikehisparentsverymuch.D、She
Astheplacecircledovertheairport,everyonesensedthatsomethingwaswrong.Theplanewasmovingunsteadilythroughtheair
最新回复
(
0
)