• 2021-04-14
    设有如下通用过程,在窗体上画一个名称为command1的命令按钮,然后编写如下事件过程:
    private sub command1_click()
    dim x as integer
    x=10
    y=5
    y=f(x)
    print x;y
    end sub
    public function f (x as integer)
    dim y as integer
    x=20
    y=2
    f=x*y
    end function
    程序运行后,如果单击命令按钮,则在窗体上显示的内容是()
  • 举一反三