有以下程序#include [stdio.h] void main(){ char *s= "120119110"; int n0,n1,n2,nn,i; n0=n1=n2=nn=i=0; do{ switch(s[i++]){ default : nn++; case '0': n0++; case '1': n1++; case '2': n2++; } }while(s[i]); printf("n0=%d,n1=%d,n2=%d,nn=%d\n",n0,n1,n2,nn); }程序的运行结果是( )。[/i] A: n0=3,n1=8,n2=9,nn=1 B: n0=2,n1=5,n2=1,nn=1 C: n0=2,n1=7,n2=10,nn=1 D: n0=4,n1=8,n2=9,nn=1
有以下程序#include [stdio.h] void main(){ char *s= "120119110"; int n0,n1,n2,nn,i; n0=n1=n2=nn=i=0; do{ switch(s[i++]){ default : nn++; case '0': n0++; case '1': n1++; case '2': n2++; } }while(s[i]); printf("n0=%d,n1=%d,n2=%d,nn=%d\n",n0,n1,n2,nn); }程序的运行结果是( )。[/i] A: n0=3,n1=8,n2=9,nn=1 B: n0=2,n1=5,n2=1,nn=1 C: n0=2,n1=7,n2=10,nn=1 D: n0=4,n1=8,n2=9,nn=1
【单选题】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]
已知变量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"
以下程序段实现的输出是()。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
已知二值医学图像IA=[1 1 1 0;1 1 0 0 ;0 1 0 0;0 0 1 0],IB=[1 0 0 0;0 1 0 0 ;0 1 0 1;0 1 1 0],则二值医学图像IA和IB相或运算后的图像IC是()。
已知二值医学图像IA=[1 1 1 0;1 1 0 0 ;0 1 0 0;0 0 1 0],IB=[1 0 0 0;0 1 0 0 ;0 1 0 1;0 1 1 0],则二值医学图像IA和IB相或运算后的图像IC是()。
已知二值医学图像IA=[0 1 1 0;0 1 1 0 ;1 1 0 0;1 0 1 0],IB=[1 1 0 1;0 1 0 0 ;0 1 1 1;0 1 0 1],则二值医学图像IA和IB相与运算后的图像IC是()
已知二值医学图像IA=[0 1 1 0;0 1 1 0 ;1 1 0 0;1 0 1 0],IB=[1 1 0 1;0 1 0 0 ;0 1 1 1;0 1 0 1],则二值医学图像IA和IB相与运算后的图像IC是()
已知变量s的值是一个字符串,以下能用于判断s这个字符串是否以字符“0”开头,且以字符“9”结尾的表达式为: A: s[0]==0 and s[9]==9 B: s[0]="0" or s[-1]="9" C: s[0]=="0" and s[-1]=="9" D: s[0]=="0" or s[-1]=="9"
已知变量s的值是一个字符串,以下能用于判断s这个字符串是否以字符“0”开头,且以字符“9”结尾的表达式为: A: s[0]==0 and s[9]==9 B: s[0]="0" or s[-1]="9" C: s[0]=="0" and s[-1]=="9" D: s[0]=="0" or s[-1]=="9"
已知变量s的值是一个字符串,以下能用于判断s这个字符串是否以字符“1”开头,且以字符“0”结尾的表达式为: A: s[0]==1ands[9]==0 B: s[0]=="1"ands[-1]=="0" C: s[0]="1"ors[-1]="0" D: s[0]=="1"ors[-1]=="0"
已知变量s的值是一个字符串,以下能用于判断s这个字符串是否以字符“1”开头,且以字符“0”结尾的表达式为: A: s[0]==1ands[9]==0 B: s[0]=="1"ands[-1]=="0" C: s[0]="1"ors[-1]="0" D: s[0]=="1"ors[-1]=="0"
利用行列式的性质计算下列行列式的值1 2 0 0 02 5 0 0 0 9 8 1 2 37 6 4 5 65 4 7 8 9
利用行列式的性质计算下列行列式的值1 2 0 0 02 5 0 0 0 9 8 1 2 37 6 4 5 65 4 7 8 9
【单选题】请用地点定桩法在4分钟内记忆数字。 4 0 1 3 6 3 5 1 9 8 8 9 7 2 9 3 0 9 5 3 1 7 7 5 2 3 3 0 5 0 1 4 1 3 8 3 5 7 9 7 (5.0分) A. 已背 B. 未背
【单选题】请用地点定桩法在4分钟内记忆数字。 4 0 1 3 6 3 5 1 9 8 8 9 7 2 9 3 0 9 5 3 1 7 7 5 2 3 3 0 5 0 1 4 1 3 8 3 5 7 9 7 (5.0分) A. 已背 B. 未背