Now that she is sick with cold, I feel I ____ have stopped her from going out in the rain.A. couldB. mightC. mustD. ought to

Now that she is sick with cold, I feel I ____ have stopped her from going out in the rain.

A. could

B. might

C. must

D. ought to


相关考题:

---- Shall we stay at home watching TV tonight?---- No, I’d like __________ and see a movie.A. to go B. go C. went D. going

下列选项中,不能输出100个整数的是A.for(int i=0;i100;i++) System.out.println(i);B.int i=0; do{ System.out.println(i); i++; }while(i100);C.int i=0; while(i100){ System.out.printIn(i); i++; }D.int i=0; while(i100){ i++; if(i100)continue; System .out.printIn(i); }

If only we______(have)a phone! I'm tired of waiting outside the public phone box.

—I'd met Smith several times before.—So (have) ( ) I.

下列选项中,不能输出100个整数的是( )。A.for(int i=0;i100;i++) System.out.println(i);B.int i=0; do{ System.out.println(i); i++; }while(i100);C.int i=0; while(i100){ System.out.println(i); i++; }D.int i=0; while(i100){ i++; if(i100)continue; System.OUt.println(i); }

下列选项中,不能输出100个整数的是( )。A.for(int i=0;i100;i++) System.out.println(i);B.int i=0; do { System.out.println(i): i++: }while(i100);C.int i=0: while(i100)f System.out.println(i); i++: }D.int i=0: while(i100){ i++: if(i1OO)continue; System.out.println(i); }

下列选项中,不能输出100个整数的是( )。A.for(int i=0;i100;i++) System.out.println(i);B.int i=0; do{ System.out.println(i); i++: }while(i100);C.int i=0: while(i100){System.out.println(i); i++: }D.int i=0: while(i100){ i++: if(i100)continue: System.out.println(i); }

6.______ Jenny._______name is Tom.A.I'm;MyB.Her;MyC.I'm;HisD.She's;Her

10.1 have a good friend.______ name is Jane._____ is thirteen.A. Her ; HerB. She's; SheC. Her;SheD. She;She

下列选项中,循环会无限执行的是______。A.int i = 1 ; while (i < 10) System .out .print(“ ” + i) ;B.for(int i = 1 ; i < 10 ;i ++) System .out .print(“ ” + i);C.for(int i = 10 ; i > 0 ;i --) System .out .print(“ ” + i);D.int i = 1 ; while (true) { System .out .print(“ ” + i); i ++ ; if (i > 5) break ;