单选题执行下面的操作后,list_two的值为()。A[4,5,6]B[4,3,6]C[4,5,3]DABC都不正确
单选题
执行下面的操作后,list_two的值为()。
A
[4,5,6]
B
[4,3,6]
C
[4,5,3]
D
ABC都不正确
参考解析
解析:
暂无解析
相关考题:
在执行下面的程序段后,a的值是为 ______。inta,, b;for(b=1,a=1; b=10)break; if 在执行下面的程序段后,a的值是为 ______。 int a,, b; for(b=1,a=1; b<=50:b++) { if(a>=10)break; if(a%2= =1) {a+=5; continue;} a-=3; )A.2B.6C.10D.8
设有下列程序段: char str[]="HelloWorld": char* plr; ptr=str: 执行上面的程序段后,*(ptr+10)的值为( )。A. \0B.0C.不确定的值D.0的地址
执行下面的程序段后,变量k中的值为 include void main( ) { int k=3,s[2]; s[ 执行下面的程序段后,变量k中的值为 #include<iostream.h> void main( ) { int k=3, s[2]; s[0]=k; k=s[1] *10; cout < < k;}A.不定值B.33C.30D.10
填空题执行下面的程序段后,S的值为()。 S=5 For c=2 To 5 Step 2 S=S+1 Next c