【单选题】窗体上有一个命令按钮Command1,编写如下事件过程: Private Sub Command1_Click() a = 80: b = 50: c = 30 If a c Then b = c If b = c And a c Then c = a + b Print a, b, c End Sub 运行时,单击按钮,窗体输出的结果是( )。
【单选题】B级冰区加强船舶的钢板焊接首柱自满载水线以上600mm处以下部分的板厚应为规范值的(),但不必大于25mm。
【单选题】This cap is nice, ________it doesn’t look good on me.
【单选题】在窗体上有一个命令按钮Command1,编写事件代码如下: Private Sub Command1_Click() Dim y As Integer y=0 Do y=InputBox('y=') If(y Mod 10)+Int(y/10)=10 Then Debug.Print y; Loop Until y=0 End Sub 打开窗体运行后,单击命令按钮,依次输入10、37、50、55、...
【单选题】在窗体上有一个命令按钮Command1,编写下列程序: Private Sub Command1_Click() Print pp1(3,7) End Sub Public Function pp1(x As Single,n As Integer)As Single If n=0 Then pp1=1 Else If n Mod 2=1 Then pp1=x*x+n Else pp1=x*x-n...
【单选题】在窗体上有一个命令按钮Command1,编写如下程序: Private Sub Command1_Click() Print pp1(3, 7) End Sub Public Function pp1(x As Single, n As Integer) As Single If n = 0 Then pp1= 1 Else If n Mod 2 = 1 Then pp1 =x*x+n Else ...
【单选题】This cap is too big. He shouldn't take it
【简答题】仿照例句写句子。 例:This is a cap. It's Green. --- This cap is Green. 1. That's an apple. It's red. ---________________________________________ 2. This is a desk. It's yello...
【单选题】在窗体上有一个命令按钮Command1,编写事件代码如下: Private Sub Command 1_Click() Dim x As Integer,y As Integer x=12:y=32 Call Proe(X,Y) Debug.Print x;y End Sub Public Sub Proc(n As Integer,ByVal m As Integer) n=n Mod 10 m...