We are glad that we have ______an agreement on this matter.
A. come
B. got
C. arrived
D. reached
查看答案
In_________your request,we make the offer as soon as possible.
A. compliance with
B. comply with
C. comply to
D. comply as
已知以下程序int p;do{scanf(“%d”,&p);}while(p>=100);此处循环的结束条件是_________。
A. p的值大于100
B. P的值大于等于100
C. P的值小于100
D. P 的 值小于等于100
以下程序的运行结果是__________。#include void main(){int i=5,s=1;do{s=s*i;i——;}while(i>2);printf(“s=%d”,s);}
do{……}while(表达式);循环至少执行_____次。