【单选题】P30.在窗体中有一个名为 Command1的按钮,该模块内还有一个函数过程 Public Function f (x As Integer) As Integer Dim y As Integer X=30 Y=3 f=x*y End Function Private Sub Command1_ Click() Dim y As integer Static x As integer X=10 ...
【简答题】在窗体中有一个名为Command12的命令按钮,Click事件功能是:接收从键盘输入的10个大于O的不同整数,找出其中的最大值和对应的输入位置。请在空白处填入适当语句,使程序可以完成指定的功能。 Private Sub Command12_C1ick( ) max=0 maxn=0 For i=1 To 10 Num=Val(InputBox(”请输入第”&i&”个大于O的整数:”)) If___...
【单选题】P65.在窗体中有一个名为Commandl的按钮,该模块内还有一个函数过程: Public Function f(x As Integer)As Integer Dim y As Integer x = 30 y = 3 f= x * y End Function Private Sub Commandl_CKck() Dim y As Integer Static x As Integer x=...