单项选择题

设有一个命令按钮Commsand1的事件过程以及一个函数过程。程序如下:
Private Sub Command1_Click(0
Static x As Integer
x=f(x+5)
Cls
Print x
End Sub
Private Funtion f(x As integer)As Integer
F=x+x
End Funtion
连续单击命令按钮3次,第3次单击命令按钮后,窗体上显示的计算结果是()。

A.10
B.30
C.60
D.70