【简答题】语法填空 I found one time that helping someone could get you into a lot of trouble. I was in the 1.________(nine) grade at the time , and we were having a final test.During the test , the girl 2.________(...
【单选题】以下程序的功能是求"x ^ 2 + 5"表达式的值,其中x的值由文本框Text0输入,运算的结果由文本框Text1输出。 Private Sub Command0_Click() Dim x As Integer Dim y As Long Me.Text0 = x y = x * x + 5 Me.Text1 = y End Sub 运行上述程序时,出现了错误,错误的语句是( )。
【简答题】以下程序的功能是求"x ^ 3 * 5"表达式的值,其中 x 的值由文本框 Text0 输入,运算的结果由文本框 Text1 输出。Private Sub Command0_Click()Dim x As IntegerDim y As LongMe.Text0 = xy = x ^ 3 * 5Me.Text1 = yEnd Sub运行上述程序时,会有错误。错误的语句是( )。A. Dim x ...