We ________ for 13 hours by the time we get to New York. A、will flyB、will be flownC、will have flown

We ________ for 13 hours by the time we get to New York.

A、will fly

B、will be flown

C、will have flown


相关考题:

我们从特供商场购买食品,并加强对所购食品的检查A.We’ll buy all the food from supermarket and check all the food we buy carefullyB.We’ll buy all the food from foreign countries and check all the food we buy carefullyC.We’ll import all the food and check all the food we buy carefullyD.We’ll buy all the food from exclusive shops and check all the food we buy carefully

Any open flame can’t exist in this business buildingA.Yes. We’ve removed all the flammable gas.B.Yes. We’ve searched everywhere for flammable liquidC.Yes. All the flammable liquid and gas have been removed already.D.Yes. We’ve removed all the liquid, gas and wood which can be burned

The problem is so serious that the situation is out of control.A.We’ve got to set up a police line and ask for aidB.We’ve got to ask for back-up from the PLA and policeC.We’ve got to report to the superiors rapidly and ask for back-upD.We have informed the authorities to take precautionary measures.

How many armored vehicles does your company dispatch for this job?A.We’ll dispatch several armored vehicles and escort securities for this jobB.The company has made a plan to send many vehicles and escort securities for this jobC.Two armored vehicles and experienced escort securities will be dispatched for this jobD.We’ll dispatch not only vehicles but also experienced securities for this job

By the time the course ends_________, a lot about the culture of this country.A. we'll learnB. we are learningC. we have learntD. we'll have learnt

By the time the course ends, ( ) a lot about the British way of life.A. we have learnedB. we'll learnC. we are learningD. we'll have learned

We’ve got a full house, so if you really want to keep your room this afternoon, we’ll have to charge you 50% of the price. (翻译)

____ were all very tired, but none of ____ would stop to take a rest. A、We ; usB、Us ; weC、We ; ourD、We ; we

使用VC6打开考生文件夹下的工程test15_3。此工程包含一个test15_3.cpp,其中定义了类Time和Timex,Timex公有继承Time,但定义并不完整。请按要求完成下列操作,将程序补充完整。(1)完成类Time构造函数的定义,将数据成员hours和minutes分别初始化为参数new_hours和new_minutes的值。请在注释“//**1**”之后添加适当的语句。(2)完成类Timex的构造函数的定义,注意参数的传递。请在注释“//**2**”之后添加适当的语句。(3)请按时间格式“hour:minute”和“hour:minute:second”分别输出对象time1和time2所表示的时间,注意必须使用已经定义的成员函数。请在注释“//**3**”之后添加适当的语句。输出结果如下:20:3010:45:34注意:除在指定的位置添加语句外,请不要改动程序中的其他语句。源程序文件test15_3.cpp清单如下:include<iostream.h>class Time{public:Time(int new hours,int new_minutes){// ** 1 **}int get_hours();int get_minutes();protected:int hours,minutes;};int Time::get_hours(){return hours;}int Time::get_minutes(){return minutes;}class Timex:public Time{public:Timex(int new hours,int new_minutes,int new_seconds);int get_seconds();protected:int seconds;};// ** 2 **{seconds=new_seconds;}int Timex::get_seconds(){return seconds;}void main(){Time time1(20,30);Timex time2(10,45,34);// ** 3 **}