You ______________________ put the passport in the suitcase, I may need it at any time. A、mustn't haveB、wouldn't haveC、shouldn't haveD、won't have

You ______________________ put the passport in the suitcase, I may need it at any time.

A、mustn't have

B、wouldn't have

C、shouldn't have

D、won't have


相关考题:

Your little girl is becoming very rude. You ________ scold her. A.mayB.canC.ought toD.need

May I take this book out of the reading room? No,you . You read it in here. ( )A. mightn’tB. won’tC. need’tD. mustn’t

You can stay here tonight.We can ( )you ______in the spare room. A.put...upB.put...awayC.put...downD.put...off

You needn't go back to London tonight.We can( )you______for the night. A.put...awayB.put ...upC.put...offD.put...down

You ( ) walk for miles and miles among the hills without meeting anyone. A、shouldB、needC、mustD、may

Our tradition ______ be different _____ yours.A、can;withB、must;withC、need;asD、may;from

3.—__________ 1 go out for a while?—No,you __________ You must finish your homework first.A. Must,needn'tB. Can,mayC. May,mustn'tD. May,must

---I haven’t got the reference book yet, but I’ll have a test on the subject next month.---Don’t worry. You______ have it by Friday.A. couldB. shallC. mustD. may

36. We ___________ keep the new traffic law and learn how to protect ourselves.A.may.B.shouldC.canD.need

下面的代码用于输出字符数组ch中每个字符出现的次数,应该填入的代码是()public static void main(String[] args) { char[] ch = { 'a', 'c', 'a', 'b', 'c', 'b' }; HashMap map = new HashMap(); for (int i = 0; i < ch.length; i++) { < 填入代码 > } System.out.println(map); }A.if (map.contains(ch[i])) { map.put(ch[i], map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }B.if (map.contains(ch[i])) { map.put(ch[i], (Integer) map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }C.if (map.containsKey(ch[i])) { map.put(ch[i], (int) map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }D.if (map.containsKey(ch[i])) { map.put(ch[i], (Integer) map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }