A、Have fun.
B、I'll drink too.
C、No way. You'll be stopped by the police.
第1题:
I'd rather have wine ______ beer.
A. instead of
B. in case of
C. because of
D. by means of
第2题:
2、在顺序结构表示的线性表中,删除第i个元素(数组下标为i-1),需要把后面的所有元素都往前挪一位,相应的语句是: for (___________ ) PtrL->Data[j-1]=PtrL->Data[j]; 其中空缺部分的内容应该是
A.j = i; j< = PtrL->Last; j++
B.j =PtrL->Last; j>= i; j--
C.j = i-1; j< = PtrL->Last; j++
D.j =PtrL->Last; j>= i-1; j--
第3题:
#让程序给你随机选择一种饮品 ######FILL###### import ____ list_drink = ['Coffe', 'water', 'orange juice', 'tea'] ######FILL###### my_drink = random.____(list_drink) print('my drink is :',my_drink)
第4题:
—Wouldyouliketo__________drink?
—Yes,I’dlikeacupofcoffee.
A.somethingelse
B.elsesomething
C.anythingelse
D.elseanything
第5题:
#让程序给你随机选择一种饮品 ######FILL###### import ____ list_drink = ['Coffe', 'water', 'orange juice', 'tea'] my_drink = random.choice(list_drink) print('my drink is :',my_drink)
第6题:
在顺序结构表示的线性表中,删除第i个元素(数组下标为i-1),需要把后面的所有元素都往前挪一位,相应的语句是: for (___________ ) PtrL->Data[j-1]=PtrL->Data[j]; 其中空缺部分的内容应该是
A.j = i; j< = PtrL->Last; j++
B.j =PtrL->Last; j>= i; j--
C.j = i-1; j< = PtrL->Last; j++
D.j =PtrL->Last; j>= i-1; j--