I apologize__being late but I missed the bus.A.toB.byC.forD.of
I apologize__being late but I missed the bus.
A.to
B.by
C.for
D.of
B.by
C.for
D.of
参考解析
解析:apologize for表示“因……道歉”;apologize to sb.表示“向某人道歉”。
相关考题:
Xiao Li: I'm sorry, Professor Liu. I have to be late again. I just had a car accident.Professor: What? An accident!______?
—I’m sorry I’m late. I got caught in traffic.—() A、No, I don’t care.B、Yes, you’re late.C、Oh, that’s OK. I’ve only been here for a little while.D、I’m sorry to hear that.
I________ my textbook at home. I had to go back for it. A.had forgottenB.had lostC.had leftD.had missed
I was late for work this morning because I ________the first bus. A.missedB.caughtC.forgotD.left
for(inti=min;i A.initi=min;while(imax){}B.inti=min; do system.out.println(i++); }while(imax);C.for(inti=min;iD.for(inti=;i++
John: Is it possible for you to work late tonight?Nick: _____________A、I like it.B、I'll do that.C、I'd love to.D、I think so.
以下不会造成死循环的C语句是(49)。A.while(x=8)x--;B.for(i=10;sum=0;sum<=i;)sum=--i;C.for(y=0,x=1;x>++y;x=i++)i=x;D.for(x=10;;x+=i);
与“for(i=0;i<10;i++)putchar('a'+i);”功能不同的语句是______。A.for(i=0;i<10;)putchar('a'+(++i));B.for(i=0;i<10;)putchar('a'+(i++));C.for(i=0;i<10;putchar('a'+i),i++);D.for(i=0;i<=9;i++)putchar('a'+i);
以下for语句中不是死循环的是A.for(int i=0;i0;++i); 以下for语句中不是死循环的是A.for(int i=0;i<1;++);B.for(int i=0∷++);C.for(int i=1;i>0;++i);D.for( ;;);
若变量已正确定义,要求程序段完成求5!的计算,不能完成此操作的程序段是A.for(i=1,p=1;i=5;i++) p*=i; B.i=1;p=1;while(i=5){p*=i; i++;}C.for(i=1;i=5;i++){ p=1; p*=i;} D.i=1;p=1;do{p*=i; i++; }while(i=5);
以下for语句中不是死循环的是A.for(int i=0;i0;++ 以下for语句中不是死循环的是A.for(int i=0;i<1;++i);B.for(int i=0;;++i);C.for(int i=1;i>0;++i);D.for(;;);
下列程序段中,不是死循环的是_______。A.int i=100;B.unsigned k=0; while(1) do { { i=i%100+1; ++k if(i>=100)break; } } while(k>=0);C.for(;;);D.int s=3379; while(s++%2+s%2)s++;
以下for语句中不是死循环的是( )。 A.for(inti=0;i1;++i);B.for(inti=0;;++i);S 以下for语句中不是死循环的是( )。A.for(inti=0;i1;++i);B.for(inti=0;;++i);C.for(inti=1;i0;++i);D.for(;;);
以下for语句中不是死循环的是A.for(int i=0;i0;++i; 以下for语句中不是死循环的是A.for(int i=0;i<1;++i;B.for(int i=0;;++i;C.for(int i=1;i>0;++i;D.for(;;);
设有定义语句: int x[6] = {2,4,6,8,5,7} , * p=x,i; 要求依次输出x数组6个元素中的值,不能完成此操作的语句是( )。A.for(i=0; i <6;i++) printf("%2d",* (p++));B.for(i =0;i <6;i ++ ) printf( "%2d" , * (p +i));C.for(i =0;i <6;i ++ ) printf(" %2d" , * p ++ );D.for(i =0;i <6;i ++ ) printf("%2d" ,( * p) ++ );
I arrived at the airport so late that I __________missed the plane.A.onlyB.quiteC.narrowlyD.seldom
Is it possible for you to work late tonight? ()A、I like it.B、I'll do that.C、I'd love to.D、I think so.
How do I get to Cairo?()A、I‘m sorry. I can‘t understand.B、You could catch the 9:30 flight and change at Paris.C、I‘m afraid you have missed the flight.D、I‘m glad to show you the way
单选题— May I come in? I’m sorry I am late.— Come in, please. But could you please tell me ______?Ahow do you come to schoolBwhat were you doing thenCwho you talked withDwhy you are late again
单选题—Sorry I’m late, but I got caught in a traffic jam. —That’s all right.______AI prefer strawberry jam.BYou’ve learnt to deal with our traffic.CI’m not late for our appointment, am I?DYou’re not used to traffic jams.
( 难度:中等)var emp = new Array(3); for(var i in emp) 以下答案中能与for循环代码互换的是:A.for(var i =0; i<emp; i++)B.for(var i =0; i<Array(3); i++)C.for(var i =0; i<emp.length(); i++)D.for(var i =0; i<emp.length; i++)