问题 阅读理解



u GONE WITH THE WIND
Author: Margaret Mitchell
¥25 (in bookstores) ¥18 (online)
Gone With the Wind is a best-seller, which tells a story that happened in the American Civil War. Scarlett O’Hara is a woman in the story who is full of energy. She is strong and saves her family but is very selfish at the same time.
u A LITTLE PRINCESS
Author: Frances Hodgson Burnett
¥18.3 (online)
Motherless Sara Crewe was sent home from India to school at Miss Minchin’s. Her father was very rich and she lived a rich and comfortable life. Then her father died and Sara lost everything. She had to learn to do with her changed life. Her strong character made her able to fight successfully against her poverty (贫穷) and the scorn (嘲笑) of her fellows. It’s an excellent book with 4 tapes for children.


u PETER PAN
Author: J.M Barrie
¥15 (in bookstores) ¥12 (online)
It is a children’s story full of imagination and adventures, which is about Wendy, John, and Michael Darling’s adventures in Never—Never Land with Peter Pan, the boy who would not grow up. The children are happy and lovely. (with 2 tapes)
UNCLE TOM’S CABIN
Author: Harriet Beecher Stowe
¥20 (in bookstores)
The most famous novel in American history, Uncle Tom’s Cabin talked about the struggle (斗争) between free states and slave states during the American Civil War and is as powerful today as when it first came out 150 years ago.
 

u THE SECRET GARDEN
Author: Frances Hodgson Burnett
¥35 (in bookstores) ¥30 (online)
Mary Lennox, a sickly orphan (孤儿), finds herself in her uncle’s dark house. Why are so many rooms locked? Why is one of the gardens locked? And what is that crying she hears at night? Through the power of hope, friendship, and the magic (魔法) of nature, the brave girl brings the house and a long-lost garden back to life.
小题1: All of the following books have children as their main characters (主角) except _________.
A.PETER PANB.GONE WITH THE WIND
C.A LITTLE PRINCESSD.THE SECRET GARDEN
小题2: We can know from the passage that _________.
A.there are only three books with tapes
B.we can buy 5 kinds of the above books in bookstores
C.two of the above books are written by Frances Hodgson Burnett
D.THE SECRET GARDEN is ¥5 cheaper in bookstores than online
小题3: Mary in THE SECRET GARDEN brings the house and a long-lost garden back to life with the help of _________.
a. the power of hope  b. friendship    c. her uncle      d. nature’s magic
A.abcB.acdC.bcdD.abd
小题4: This article may appear ___________.
A.as an advertisementB.as an introduction to the western literature (文化)
C.in a Chinese filmD.only to middle school students
答案

小题1:B

小题1:C

小题1:D

小题1:A

多项选择题
填空题

使用VC6打开考生文件夹下的源程序文件3.cpp,其中定义了类A、A1和A2,其中A1类由A类公有派生,A2类由A1类公有派生。
(1)定义类A的构造函数,该构造函数有一个整型的参数x,在构造函数中请将X赋值给数据成员a。请在注释“//********1********”之后添加适当的语句。
(2)定义类A1的构造函数,该构造函数有两个整型的参数x和y,在构造函数中请将X赋值给数据成员b,将y作为基类A构造函数的参数值传入。请在注释“//********2********”之后添加适当的语句。
(3)定义类A2的构造函数,该构造函数有3个整型的参数x,y和z,在构造函数中请将X赋值给数据成员c,将y和z分别赋值给基类A1构造函数的参数x和y。请在注释“//********3********”之后添加适当的语句。
(4)完成类A2的成员函数show的定义,该函数调用基类成员函数,输出基类书局成员a和b及类A2自身的数据成员c的值,上述3个值在输出时以空格隔开。请在注释“//********4********”之后添加适当的语句。
注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。
程序输出结果如下:
7
3
7 3 8
注意:除在指定的位置添加语句之外,请不要改动程序的其他部分。
试题程序:
#include<iostream.h>
class A

int a;
public:
//********1********
int geta()return a;

class A1:public A

int b;
public:
//********2********
int getb()return b;

class A2:public A1

int c;
public:
//********3********
void show()

//********4********


void main()

A2 a(8,3,7);
cout<<a.geta()<<end1;
cout<<a.getb()<<end1;
a.show();