以下程序段实现的输出是()。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
下列Visual Basic程序段是计算()公式的。<br/>s=0:t=1<br/>For I=1 To 10<br/>t=t*I<br/>s=s+t<br/>Next I A: s=1+2+3+4+5+6+7+8+9+10 B: s=1*2*3*4*5*6*7*8*9*10 C: s=1!+2!+3!+4!+5!+6!+7!+8!+9!+10! D: s=1+2*3+3*4+4*5+5*6+6*7+7*8+8*9+9*10
下列Visual Basic程序段是计算()公式的。<br/>s=0:t=1<br/>For I=1 To 10<br/>t=t*I<br/>s=s+t<br/>Next I A: s=1+2+3+4+5+6+7+8+9+10 B: s=1*2*3*4*5*6*7*8*9*10 C: s=1!+2!+3!+4!+5!+6!+7!+8!+9!+10! D: s=1+2*3+3*4+4*5+5*6+6*7+7*8+8*9+9*10
已知变量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"
设S="Chinese dream my dream",T="dream",则index(S, T, 3 )的值为______。 A: 0 B: 9 C: 18 D: 9和18
设S="Chinese dream my dream",T="dream",则index(S, T, 3 )的值为______。 A: 0 B: 9 C: 18 D: 9和18
若集合S={3,a2},T={x|0<x+a<3,x∈Z}且S∩T={1},P=S∪T,求集合P的所有子集。
若集合S={3,a2},T={x|0<x+a<3,x∈Z}且S∩T={1},P=S∪T,求集合P的所有子集。
设S="Chinese dream my dream",T="dream",则index(S, T, 3 )的值为______。 A: 0 B: 9 C: 18 D: 9和18
设S="Chinese dream my dream",T="dream",则index(S, T, 3 )的值为______。 A: 0 B: 9 C: 18 D: 9和18
下列程序输出结果是( )。 i=1 s=0 while i<=3: s=s+i i=i+1 print(s) A: 1 B: 3 C: 6 D: 9
下列程序输出结果是( )。 i=1 s=0 while i<=3: s=s+i i=i+1 print(s) A: 1 B: 3 C: 6 D: 9
以下程序的运行结果是________。#include ”stdio.h”main(){ int a,b,c,s,w,t; s=w=t=0; a= -1; b=3; c=3; if (c>0) s=a+b; if (a<=0) { if (b>0) if (c<=0) w=a-b;}else if (c>0) w=a-b; else t=c;printf(”%d %d %d”, s,w,t);}
以下程序的运行结果是________。#include ”stdio.h”main(){ int a,b,c,s,w,t; s=w=t=0; a= -1; b=3; c=3; if (c>0) s=a+b; if (a<=0) { if (b>0) if (c<=0) w=a-b;}else if (c>0) w=a-b; else t=c;printf(”%d %d %d”, s,w,t);}
以下程序的运行结果是________。 #include “stdio.h” void main() { int a,b,c,s,w,t; s=w=t=0; a= -1; b=3; c=3; if (c>0) s=a+b; if (a<=0) { if (b>0) if(c<=0) w=a-b;} else if(c>0) w=a-b; else t=c; printf("%d %d %d", s,w,t); }
以下程序的运行结果是________。 #include “stdio.h” void main() { int a,b,c,s,w,t; s=w=t=0; a= -1; b=3; c=3; if (c>0) s=a+b; if (a<=0) { if (b>0) if(c<=0) w=a-b;} else if(c>0) w=a-b; else t=c; printf("%d %d %d", s,w,t); }
【单选题】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]