• 2022-06-06 问题

    以下程序段实现的输出是()。for(i=0;i<;=9;i++)s[i]=i;for(i=9;i>;=0;i--)printf("%2d",s[i]);[/i][/i] A: 9 7 5 3 1 B: 1 3 5 7 9 C: 9 8 7 6 5 4 3 2 1 0 D: 0 1 2 3 4 5 6 7 8 9

    以下程序段实现的输出是()。for(i=0;i<;=9;i++)s[i]=i;for(i=9;i>;=0;i--)printf("%2d",s[i]);[/i][/i] A: 9 7 5 3 1 B: 1 3 5 7 9 C: 9 8 7 6 5 4 3 2 1 0 D: 0 1 2 3 4 5 6 7 8 9

  • 2022-07-28 问题

    已知变量s的值是一个字符串,以下能用于判断s这个字符串是否以字符“0”开头,且以字符“9”结尾的表达式为: A: A.s[0]="0" or s[-1]="9" B: A.s[0]==0 and s[9]==9 C: s[0]=="0" and s[-1]=="9" D: A.s[0]=="0" or s[-1]=="9"

    已知变量s的值是一个字符串,以下能用于判断s这个字符串是否以字符“0”开头,且以字符“9”结尾的表达式为: A: A.s[0]="0" or s[-1]="9" B: A.s[0]==0 and s[9]==9 C: s[0]=="0" and s[-1]=="9" D: A.s[0]=="0" or s[-1]=="9"

  • 2022-06-18 问题

    表示x是5的倍数或是9的倍数的逻辑表达式为 ____。 A: x \ 5 = 0 Or x \ 9 = 0 B: x \ 5 = 0 And x \ 9 = 0 C: x Mod 5 = 0 Or x Mod 9 = 0 D: x Mod 5 = 0 And x Mod 9 = 0

    表示x是5的倍数或是9的倍数的逻辑表达式为 ____。 A: x \ 5 = 0 Or x \ 9 = 0 B: x \ 5 = 0 And x \ 9 = 0 C: x Mod 5 = 0 Or x Mod 9 = 0 D: x Mod 5 = 0 And x Mod 9 = 0

  • 2021-04-14 问题

    【单选题】Which of the following matrices does not have the same determinant of matrix B: [1, 3, 0, 2; -2, -5, 7, 4; 3, 5, 2, 1; -1, 0, -9,-5] A. [1, 3, 0, 2; -2, -5, 7, 4; 0, 0, 0, 0; -1, 0, -9, -5] B. [1, 3, 0, 2; -2, -5, 7, 4; 1, 0, 9, 5; -1, 0, -9, -5] C. [1, 3, 0, 2; -2, -5, 7, 4; 3, 5, 2, 1; -3, -5, -2, -1] D. [1, 3, 0, 2; -2, -5, 7, 4; 0, 0, 0, 1; -1, 0, -9, -5]

    【单选题】Which of the following matrices does not have the same determinant of matrix B: [1, 3, 0, 2; -2, -5, 7, 4; 3, 5, 2, 1; -1, 0, -9,-5] A. [1, 3, 0, 2; -2, -5, 7, 4; 0, 0, 0, 0; -1, 0, -9, -5] B. [1, 3, 0, 2; -2, -5, 7, 4; 1, 0, 9, 5; -1, 0, -9, -5] C. [1, 3, 0, 2; -2, -5, 7, 4; 3, 5, 2, 1; -3, -5, -2, -1] D. [1, 3, 0, 2; -2, -5, 7, 4; 0, 0, 0, 1; -1, 0, -9, -5]

  • 2021-04-14 问题

    设有如下代码段 1 String s = null; 2 if ( s != null & s.length() > 0) 3 System.out.println("s != null & s.length() > 0"); 4 if ( s != null && s.length() > 0) 5 System.out.println("s != null & s.length() > 0"); 6 if ( s != null || s.length() > 0) 7 System.out.println("s != null & s.length() > 0"); 8 if ( s != null | s.length() > 0) 9 System.out.println("s != null | s.length() > 0"); 哪些行将抛出空指针异常?

    设有如下代码段 1 String s = null; 2 if ( s != null & s.length() > 0) 3 System.out.println("s != null & s.length() > 0"); 4 if ( s != null && s.length() > 0) 5 System.out.println("s != null & s.length() > 0"); 6 if ( s != null || s.length() > 0) 7 System.out.println("s != null & s.length() > 0"); 8 if ( s != null | s.length() > 0) 9 System.out.println("s != null | s.length() > 0"); 哪些行将抛出空指针异常?

  • 2022-07-28 问题

    已知变量s的值是一个字符串,以下能用于判断s这个字符串是否以字符“0”开头,且以字符“9”结尾的表达式为: A: s[0]==0 and s[9]==9 B: s[0]=&quot;0&quot; or s[-1]=&quot;9&quot; C: s[0]==&quot;0&quot; and s[-1]==&quot;9&quot; D: s[0]==&quot;0&quot; or s[-1]==&quot;9&quot;

    已知变量s的值是一个字符串,以下能用于判断s这个字符串是否以字符“0”开头,且以字符“9”结尾的表达式为: A: s[0]==0 and s[9]==9 B: s[0]=&quot;0&quot; or s[-1]=&quot;9&quot; C: s[0]==&quot;0&quot; and s[-1]==&quot;9&quot; D: s[0]==&quot;0&quot; or s[-1]==&quot;9&quot;

  • 2021-04-14 问题

    以下程序的输出是 ___。main() {char a[2][5]={”6937”,”8254”}; int i,j,s=0; for ( i = 0; i < 2; i++ ) for ( j = 0; a[i][j]>’0’ && a[i][j]<=’9’; j+=2 ) s=10*s+a[i][j]-’0’; printf(”s=%d\n”,s);}

    以下程序的输出是 ___。main() {char a[2][5]={”6937”,”8254”}; int i,j,s=0; for ( i = 0; i < 2; i++ ) for ( j = 0; a[i][j]>’0’ && a[i][j]<=’9’; j+=2 ) s=10*s+a[i][j]-’0’; printf(”s=%d\n”,s);}

  • 2022-06-30 问题

    乙醇杀菌力最强时的浓度是( ) A: 5 0 % B: 6 0 % C: 7 0 % D: 9 0 % E: 9 5 %

    乙醇杀菌力最强时的浓度是( ) A: 5 0 % B: 6 0 % C: 7 0 % D: 9 0 % E: 9 5 %

  • 2022-05-30 问题

    3.设函数$f(x)={{x}^{4}}\sin x$,则${{f}^{(9)}}(0)=$( )。 A: $\frac{9!}{5!}$ B: $\frac{5!}{9!}$ C: $\frac{1}{5!}$ D: $0$

    3.设函数$f(x)={{x}^{4}}\sin x$,则${{f}^{(9)}}(0)=$( )。 A: $\frac{9!}{5!}$ B: $\frac{5!}{9!}$ C: $\frac{1}{5!}$ D: $0$

  • 2022-06-03 问题

    若有如下定义:chars&#91;20&#93;,*ps=s;则以下赋值语句正确的是() A: s=ps+s; B: ps=ps+20; C: s[5]=ps[9]; D: ps=s[0];

    若有如下定义:chars&#91;20&#93;,*ps=s;则以下赋值语句正确的是() A: s=ps+s; B: ps=ps+20; C: s[5]=ps[9]; D: ps=s[0];

  • 1 2 3 4 5 6 7 8 9 10