网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
If you _______ out to play, I would go along with you.

A.had gone

B.went

C.go

D.gone


参考答案

更多 “ If you _______ out to play, I would go along with you. A.had goneB.wentC.goD.gone ” 相关考题
考题 A nice hot bath should help to _________ (放松) you.

考题 阅读以下说明和Java代码,将应填入(n)处的字句写在对应栏内。【说明】下面代码里,instr是一个抽象类,它被两个子类wind和rain分别实现,而brass又继承了wind类,并覆盖了play方法。【程序】(1) class instr{(2) Void play();}class wind (3) instr{void play(){System.out.println("wind play!");}}class rain extends instr {void play(){System.out.println("rain play!");}}class brass extends (4) {void play(){System.out.println("brass play!"));}}public class music{static void tuneAll(instr e[]){for(int i=0;i<e.length;i++)e[i].play();}public (5) void main(String[]args){instr orch[]=new instr[3];int i=0;orch[i++]=new wind();orch[i++]=new rain();orch[i++]=new brass();tuneAll(orch);}}

考题 ”You ____ have a wrong number,” she said. “There’s no one of that name here.”A. needB. canC. mustD. would

考题 Ifyoudon’tliketoswim,you_____aswellstayathome.A)shouldB)mayC)canD)would

考题 "You _________ finish your homework before the dinner." said mother. A.shouldB.have toC.mustD.would

考题 “Must I return the book to the library in a week?”“No, you.”()A. couldn’tB. mustn’tC. needn’tD. won’t

考题 Quite often after dinner, they ( ) music in a pub and ( ) home about midnight.A. are playing…are goingB. will play… are goingC. play…go

考题 阅读以下说明和Java程序,填补代码中的空缺(1)~(5),将解答填入答题纸的对应栏内。 【说明】 对部分乐器进行建模,其类图如图6-1所示,包括:乐器(Instrument)、管乐器(Wind)、打击乐器( Percussion)、弦乐器(Stringed)、木管乐器(Woodwind)、铜管乐器(Brass)。图6-1 类图 下面是实现上述设计的Java代码,其中音乐类(Music)使用各类乐器(Instrument)进行演奏和调音等操作。【Java代码】 enum Note{ /* 枚举各种音调 */ MIDD[LE_C, C_SHARP, B_FLAT; //其他略 } interface Instrument { /* 接口,乐器 */ (1) ; //play方法接口 void adjust() ; //adjust方法接口 } class Wind (2) { public void play(Note n) { System.out.println(Wind.play()+n); } public void adjust() { System.out.println(Wind.adjust()); } } /* 类Percussion和Stringet实现代码略 */ class Brass (3) { public void play(Note n) { System.out.println(Brass.play()+n); } public void adjust () { System.out.println(Brass.adjust()); } } class Woodwind extends Wind { public void play (Note n) { System.out.println(Woodwind.play()+n); } } public void tune(Instrument i) { i.play(Note.MIDDLE_C); } void adjust(Instrument i) { i.adjust(); } void tuneAll (4) e ) { class Music { for(lnstrument i : e) { adjust(i); tune(i); } } public static void main(String[] args) { Music music= (5) Music(); Instrument[] orchestra={ new Wind(), new Woodwind() }; music.tuneAll(orchestra); } 奉程序运行后的输出结果为: Wind.adjust() Wind.play() MIDDLE_C Wind.adjust() Woodwind.play() MIDDLE_C

考题 “You ____ have a wrong number,” she said. “There’s no one of that name here.”A. needB. canC. mustD. would

考题 阅读以下说明和Java程序,填补代码中的空缺,将解答填入答题纸的对应栏内。 [说明] 对部分乐器进行建模,其类图如下图所示,包括:乐器(Instrument)、管乐器(Wind)、打击乐器(Percussion)、弦乐器(Stringed)、木管乐器(Woodwind)、铜管乐器(Brass)。 类图 下面是实现上述设计的Java代码,其中音乐类(Music)使用各类乐器(Instrument)进行演奏和调音等操作。 [Java代码] enum Note{/*枚举各种音调*/ MIDDLE_C,C_SHARP,B_FLAT; //其他略 } interfaceInstrument {/*接口,乐器*/ ______; //play方法接口 void adjust(); //adjust方法接口 } class Wind ______{ public voidplay(Note n) { System.out.println("Wind.play()"+n); } public void adjust(){System.out.println("Wind.adjust()");} } /*类Percussion和Stringed实现代码略*/ class Brass ______{ public voidplay(Note n) {System.out.println("Brass.play()"+n); } public voidadjust(){System.out.println("BrasS.adjust()");) } Class Woodwindextends Wind{ publicvoidplay(Note n){System.out.println("Woodwind.play()"+n); } } public classMusic{ voidtune(Instrument_i){i.play(Note.MIDDLE_C.; } voidadjust(Instrument i){i.adjust(); } voidtuneAll(______ e){ for(Instrumenti:e){ adjust(i); tune(i); } } public Static voidmain(String[] args){ Music music=______ Music(); Instrument[]orchestra={new Wind(), new Woodwind() }; music.tuneAll(orchestra); } } 本程序运行后的输出结果为: Wind.adjust() Wind.play()MIDDLE_C Wind.adjust() Woodwind.play()MIDDLE_C