加油站遇到油品质量抽查,每次应取()油样。
A.1份
B.2份
C.3份
D.4份
参考答案:C
Smoking is not allowed in our school, so it may be a good chance for our math teacher to_______ smoking.
A.put up
B.give up
C.pick up
D.look up
执行下面程序,第一行输出结果是 [11] ,第二行输出结果是 [12] 。 Option Explicit Private Sub Form_Click() Dim A As Integer A=2 Call Sub1(A) End Sub Private Sub1(x As Integer) x=x*2+1 If x<10 Then Call Sub1(x) End If x=x*2+1 Print x End Sub