问题:
[单选] 设有一个命令按钮Command1的事件过程以及一个函数过程。程序如下:
Private Sub Command1 Click( )
Static x A S Integer
x=f(x+5)
Cls
Print X
End Sub
Private Function f(x As Integer)As Integer
f=x+x
End Function
连续单击命令按钮3次,第3次单击命令按钮后,窗体显示的计算结果是( )。
A . 10
B . 30
C . 60
D . 70