Once a week my aunt would announce, "I am going to have my bath today."Now most people find it fairly simple to have a bath.You probably remember how it goes.You enter the bathroom, you put the plug in, turn on the hot water, get into the bath, wash, sing

题目

Once a week my aunt would announce, "I am going to have my bath today."

Now most people find it fairly simple to have a bath.You probably remember how it goes.You enter the bathroom, you put the plug in, turn on the hot water, get into the bath, wash, sing, get out, dry yourself and exit.My aunt's approach was more epic(宏大的), like one of those long Eisenstein films where people seem to be climbing up the same flight of stairs forever.

My aunt would first slowly collect her clean linen(亚麻布衬衫), so as to have it all ready for changing into after her bath.This involved sorting out her linen, which took up most of the morning.Sometimes she would find an old letter buried among her linen, become interested in the memories it aroused and have to postpone the bath until the next day.But if all went well, she would have a bite of lunch and start Phase Two around two o'clock.

Phase Two was washing out the bath.She would wash the bath very thoroughly, rinse(冲洗) it with running cold water, rewash it and then carefully feel the whole surface with her fingers.If there was the slightest blemish, she would clean the whole bath out again.This took about an hour.Then she would fill the bath.

By this time she was feeling a bit hungry and exhausted.So she would put on the kettle for a cup of tea.Several cups of tea and several cream crackers (her favourite food) later, she would go back to the bathroom.And find the water stone cold.

1.According to the writer, most people().

A.read magazines in the bath

B.make bath time a special occasion

C.sing when they are in the bath

D.have a bath once every other week

2.The writer's aunt().

A.never got used to taking a bath regularly

B.always treated bathtime as an event

C.hated climbing the stairs to the bathroom

D.would collect her new linen quickly

3.How did she use to spend most of the morning?()

A.Reading old letters.

B.Preparing lunch.

C.Getting the bath water hot.

D.Sorting out her linen.

4.Why might the writer's aunt put off bathing until the next day?()

A.She might get fascinated by an old letter.

B.She would sometimes get too tired.

C.She would sometimes have lunch instead.

D.She might start ironing the linen.

5.She would never fill the bath until she().

A.had cleaned it at least three times

B.had had several cups of tea

C.had polished it inside and outside

D.had made sure it was perfectly clean


相似考题
更多“Once a week my aunt would announce, "I am going to have my bath today."Now ”相关问题
  • 第1题:

    下列程序的输出结果是【 】。 includeclass MyClass{public: int number; void set(in

    下列程序的输出结果是【 】。

    include<iostream. h>

    class MyClass

    {

    public:

    int number;

    void set(int i);

    };

    int number=3;

    void MyClass: :set (int i)

    {

    number=i;

    }

    void main( )

    {

    MyClass my1;

    int number=10;

    my1.set(5),

    cout<<my1, number<<',';

    my1.set(number);

    cout<<my1.number<<',';

    my1.set(: :number);

    cout<<my1.number<<'.';

    }


    正确答案:5103
    5,10,3 解析:本题考查全局变量,局部变量和类的数据成员之间的使用上的差别。使用全局变量时需要用域作用符来限定该变量,否则编译器无法正确区分。

  • 第2题:

    类MyClass的定义如下: classMyClass { public: MyClass(){value=0;} SetVariable(inti){valtic=i;} private: intvalue; }; MyClass*P,my;p=&my; 则对下列语句序列正确的描述是( )。

    A.语句p=&my;是把对象my赋值给指针变量P

    B.语句MyClass*P,my;会调用两次类MyClass的构造函数

    C.对语句*P.SetVariable(5)的调用是正确的

    D.语句P->SetVariable(5)与语句my.SetVariable(5)等价


    正确答案:D
    D。【解析】语句p=&my;是把对象my的地址值赋给指针变量P。语句MyClass*P,my;,由于P只是一个指向对象的指针,因此定义指针P不调用构造函数,所以此语句只调用一次构造函数。对成员函数的引用可以通过两种形式:指针->成员函数(形参表)或者对象名.成员函数名(形参表)。

  • 第3题:

    类MyClass的定义如下: class MyClass { pubfic: MyClass(){value=0;} SetVariable(int i){value=i;) private: intvalue; }; 则对下列语句序列正确的描述是( )。 MyClass*p,my;p=&my;

    A.语句p=&my;是把对象my赋值给指针变量p

    B.语句MyClass*p,my;会调用两次类MyClass的构造函数

    C.对语句*p.SetVariable(5)的调用是正确的

    D.语句p->SetVadable(5)与语句my.SetVariable(5)等价


    正确答案:D

  • 第4题:

    类MyClass的定义如下: class MyClass { public: MyClass(){value=0;} SetVariable(int i){value=i;) private: int value; }; 则对下列语句序列正确的描述是( )。

    A.MyClass*p,my;p=&my;

    B.语句p=&my;是把对象my赋值给指针变量p

    C.语句MyClass*p,my;会调用两次类MyClass的构造函数

    D.对语句*p.SetV ariable(5)与语句my.SetVariable(5)等价


    正确答案:D

  • 第5题:

    类MyClass的定义如下: class MyClass { public: MyClass( ){value=0;} SetVariable(int i){value=i;} private: int value; }; 则对下列语句序列正确的描述是( )。 MyClass*P, my; p=&my;

    A.语句p=&my; 是把对象my赋值给指针变量P

    B.语句MyClass*p, my; 会调用两次类MyClass的构造函数

    C.对语句*P. SetVariable(5)的调用是正确的

    D.语句p->SetVariable(5)与语句my.SetVariable(5)等价


    正确答案:D
    解析:选项A),语句p=&my;是把对象my的地址值赋值给指针变量P;选项B),语句MyClass*p,my;,由于p只是一个指向对象的指针,因此定义指针p不调用构造函数,所以此语句只调用一次构造函数;对成员函数的引用可以通过两种形式:指针->成员函数(形参表)或者对象名.成语函数名(形参表),故选项C)错误,选项D)正确。

  • 第6题:

    MySQL使用()文件中的配置参数。

    A.my-larger.ini

    B.my-small.ini

    C.my-huge.ini

    D.my.ini


    my.ini