原子可以用符号AZX表示,其中()。
第1题:
A.(4.0-~5.5)x10/sup12/supsubo/L
B.(4.0~5.0)x10/sup12/supsubo/L
D.(6.0~7.0)x10/sup12/supsubo/L
C.(3.5~5.0)x10/sup12/supsubo/L
E.(4.0-6.5)x10/sup12/supsubo/L
第2题:
A.pH上升
B.PaCO/sub2/supsubno上升
C.Pa0/sub2/supsubno上升
D.HCO/sub3/supsubno/sup-/supsubno降低
E.HCO/sub3/supsubno/sup-/supsubno升高
第3题:
下面程序: Private Sub Form. _Click () Dim x, y, z As Integer x=5 y=7 z=0 Call P1(x, y, z) Print Str (z) End Sub Sub P1 (ByVal a As Integer, ByVal b As Integer , c As Integer) c= a+b End Sub 运行后的输出结果为______。
A.0
B.12
C.Str(z)
D.显示错误信息
第4题:
若有以下程序: #include <iostream> using namespace std; void sub(int x,int y, int *z) { *z = y+x; } int main() { int a,b, c; sub (8,4,&a) ; sub (6, a, &b) ; sub(a,b,&c) ; cout<<a<<", "<<b<<", "<<c<<end1; return 0; } 程序运行后的输出结果是( )。
A.12,18,30
B.-12,6,8
C.6,8,10
D.12,-18,16
第5题:
把‘今天天气不错!’变为‘今天天气不错’是( )。
A.<sup></sup>
B.<s></s>
C.<tt></tt>
D.<sub></sub>
E.<i></i>
第6题:
A.pH上升
B.PaCO/sub2/supsubno上升
C.PaO/sub2/supsubno上升
D.HCO/sub3/supsubno/sup-/supsubno降低
E.HCO/sub3/supsubno/sup-/supsubno升高
第7题:
以下程序的运行结果是( )。 #include<iostream.h> void sub(int x,int y,int*z) {*Z=y-x;} void main() {int a,b,c; sub(10,5,&a); sub(7,a,&b); sub(a,b,&c); cout<<a<<“,”<<b<<“,”<<c<<endl;}
A.5,2,3
B.-5,-12,-7
C.-5,-12,-17
D.5,-2,-7
第8题:
以下程序的运行结果是
sub(int x,int y,int *z)
{*z=y-x;}
main()
{ int a,b,c;
sub(10,5,&a);
sub(7,a,&b);
sub(a,b,&c);
printf("M,M,M\n",a,b,c);}
A.5,2,3
B.-5,-12,-7
C.-5,-12,-17
D.5,-2,-7
第9题:
有如下过程:
Sub SS(ByVal X,ByRef Y,Z)
X=X + 1
Y=Y + 1
Z=Z + 1
End Sub
执行该过程的事件过程如下:
Private Sub Command1_Click()
A = 1
B = 2
C = 3
Call SS(A,B,C) Print A;B;C
End Sub
则该程序的执行结果是【 】。
第10题:
若有以下变量和函数说明: #include<iostream.h> charCh='*'; void sub(int x,int y,char ch,double*Z) { switch(ch) { case'+':*Z=x+y;break; case'-':*Z=x-y;break: case'*':*Z=x*y;break; case'/':*z=x/y;break: } } 以下合法的函数调用语句是( )。
A.sub(10,20,Ch,y);
B.sub(1.2+3,2*2,'+',&Z);
C.sub(sub(1,2,'+',&y),sub(3,4'+',&x),'-',&y);
D.sub(a,b,&x,ch);