• 2021-04-14
    在窗体中添加一个命令按钮Command1,并编写如下程序:
    PrivateSubCommand1_Click()
    x=InputBox(x)
    Ifx^2=9Theny=x
    Ifx^2<9Theny=1/x
    Ifx^2>9Theny=x^2+1
    Printy
    EndSub
    程序运行时,单击命令按钮,在InputBox中输入3,然后单击“确定”按钮,程序的运行结果为()。