Saul's brother left the matter entirely up to ______ and ______.
A. I, he
B. him, I
C. me, he
D. him, me
第1题:
( 34 )在窗体中添加一个名称为 Command1 的命令按钮,然后编写如下事件代码:
Private Sub Command1_Click( )
s="ABBACDDCBA"
For I=6 To 2 Step -2
x=Mid(s,I,I)
y=Left(s,I)
z=Right(s,I)
z=x & y & z
Next I
MsgBox z
End Sub
窗体打开运行后,单击命令按钮,则消息框的输出结果是
A ) AABAAB
B ) ABBABA
C ) BABBA
D ) BBABBA
第2题:
7、第三章 以下为求1到100(包括100)以内所有偶数积的算法,从中选出描述正确的算法()
A.①s=1;②i=0;③i=i+2; ④s=s*i; ⑤如果i<100 >
B.①s=0;②i=0;③s=s*i; ④i=i+2; ⑤如果i<100 >
C.①s=0;②i=0;③i=i+2; ④s=s*i; ⑤如果i<100 >
D.①s=1;②i=0;③s=s*i; ④i=i+2; ⑤如果i<100 >
第3题:
以下为求1到100(包括100)以内所有偶数积的算法,从中选出描述正确的算法()
A.①s=0; ②i=0; ③s=s*i; ④i=i+2; ⑤如果i<100,则返回③; ⑥结束
B.①s=0; ②i=0; ③i=i+2; ④s=s*i; ⑤如果i<100,则返回③; ⑥结束
C.①s=1; ②i=0; ③s=s*i; ④i=i+2; ⑤如果i<100,则返回③; ⑥结束
D.①s=1; ②i=0; ③i=i+2; ④s=s*i; ⑤如果i<100,则返回③; ⑥结束
第4题:
3.—Mr Zhang,I'm not feeling well. I-d like to have this afternoon _________ to go to a doctor.
—OK.
A.on
B.off
C.down
D.up
第5题:
C语言中,s=--i; 等价于【 】
A.s=i; i=i-1;
B.i=i-1; s=i;
C.s=i; s=s-1
D.s=i; s=i-1;