niusouti.com

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


相似考题
更多“We ________ for 13 hours by the time we get to New York. ”相关问题
  • 第1题:

    By the time the course ends_________, a lot about the culture of this country.

    A. we'll learn

    B. we are learning

    C. we have learnt

    D. we'll have learnt


    正确答案:D
    本题考查的是将来完成时的用法。将来完成时表示在将来某一时刻之前业已完成的动作。题干的意思是:“这门课学完时,我们将了解这个国家很多文化知识。”

  • 第2题:

    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. (翻译)


    参考答案:我们的客房很满,如果您确实需要再住一个下午,恐怕我们要向您收取50% 的房费

  • 第3题:

    使用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:30

    10: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 **

    }


    正确答案:(1) hours=new_hours; minutes=new_minutes; (2) Timex::Timex(int new_hoursint new_minutes int new_seconds):Time(new_hoursnew_minutes) (3) couttime1.get_hours()":"time1.get_minutes()end1; couttime2.get_hours()":"time2.get_minutes()":"time2.get_seconds()endl;
    (1) hours=new_hours; minutes=new_minutes; (2) Timex::Timex(int new_hours,int new_minutes, int new_seconds):Time(new_hours,new_minutes) (3) couttime1.get_hours()":"time1.get_minutes()end1; couttime2.get_hours()":"time2.get_minutes()":"time2.get_seconds()endl; 解析:本题主要考查考生对于类和派生类构造函数的定义以及成员函数的使用,注意(2)中派生类构造函数中必须包括向基类传递参数的调用,应该使用参数列表完成这一操作。

  • 第4题:

    By the time the course ends, ( ) a lot about the British way of life.

    A. we have learned

    B. we'll learn

    C. we are learning

    D. we'll have learned


    正确答案:D    

  • 第5题:

    ____ were all very tired, but none of ____ would stop to take a rest.

    A、We ; us

    B、Us ; we

    C、We ; our

    D、We ; we


    正确答案:A