单项选择题

窗体上有1个名称为Command1的命令按钮,事件过程如下:Private Sub Command1_Click()  Dim num As Integer,x As Integer  num=Val(InputBox("请输入一个正整数"))  Select Case num    Case Is>100      x=x+num    Case Is<90      x=num    Case Else      x=x*num  End Select  Print x;End Sub运行程序,并在三次单击命令按钮时,分别输入正整数100、90和60,则窗体上显示的内容为______。

A.0 0 0
B.0 0 60
C.0 90 0
D.100 0 60