记账凭证必须具备的基本要素包括( )等。
A.记账符号
B.填制凭证的日期
C.凭证的名称和编号
D.经济业务摘要
参考答案:A,B,C,D
Is she counting insects? [ ]
A. Yes, she does.
B. Yes, she do.
C. Yes, she is.
阅读下列程序:
PrivateSubCommand1_Click()
Dim i As Integer,k As Integer
k=2
For i=1 To 3
Print Fun(k);
Next
End Sub
Function Fun(j As Integer)
Static b
a=0
a=a+1
b=b+1
Fun=a*b+j
End Function 程序运行后,单击命令按钮输出结果是
A.234
B.345
C.567
D.356