隋朝与秦朝最突出的相同点在于 [ ]
A、外戚建立,暴政而亡
B、结束分裂,实现统一
C、定都长安,疆域广阔
D、大兴土木,民不聊生
答案:B
汇编语言程序设计中的三种构成方法分别是顺序程序设计、 【16】 和循环程序设计。
单击命令按钮时,下列程序代码的执行结果为______。 Private Function FirProc (x As Integer,y As Integer,z As Integer) FirProc=2*x+y+3*z End Function Private Function SecProc(x As Integer,y As Integer,z As Integer) SecProc=FirProc(z,x,y)+x End Function Private Sub Command1_Click() Dim a As Integer Dim b As Integer Dim C As Integer a=2 b = 3 c = 4 Print SecProc(c,b,a) End Sub
A.21
B.19
C.17
D.34