过程代码段如下,单击Button1后,消息框中显示的消息为______。 Private Sub Button...
单项选择题过程代码段如下,单击Button1后,消息框中显示的消息为______。 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim MyRice%, MyMeat% Dim Str1 As String MyRice = 500 : MyMeat = 200 Str1 = Eater(MyRice, MyMeat) MsgBox( MyRice & " " & MyMeat ) End Sub Function Eater(ByVal Rice%, ByRef Meat%) As String Rice = Rice - 100 Meat = Meat - 50 Return "I have had a meal!" End Function
A、500 200
B、400 200
C、500 150
D、400 150
A.Click