在成熟的房地产市场中,居房地产业的主体地位的是()。
A.房地产经纪业
B.房地产咨询业
C.房地产物业管理业
D.房地产估价业
参考答案:A
在窗体上放置一个命令按钮Command1,并编写下列单击事件的程序: Option Base 1 Private Sub Command1_Click() Dim c As Integer,d As Integer d=0 c=6 X=Array(2,4,6,8,10,12) For i=1 To 6If X(i)>c Then d=d+X(i) c=X(i)Else d=d-cEnd If Next i Print d End Sub 程序运行后,单击命令按钮,则在窗体上输出的结果为( )。
A) 10 B) 12 C) 16 D) 20