A.car
B.7
C.1
D.2
I can’t afford a bicycle, _______ a car.A. not to speakB. not to mentionC. that’s to sayD. let alone
点击查看答案
In order to cut down on the carbon emission, more people choose to travel_.A.by electric car, bicycle or planeB.by private car, bicycle or busC.by bus, electric car or planeD.by bicycle, bus or electric car
Passage ThreePeople enjoy talking about "firsts." They like to remember their first love or their first car. But not all firstsare happy ones. Few people enjoy recalling the firsts that are bad.One of history's bad but important firsts was the first car accident. Autos were still young when it happened. The crash took place in New York City. The year was 1896. The month was May. A man from Massachusetts was visiting the city in his new car. At the time, bicycle riders were still trying to get used to the new set of wheels on the road. No one is sure who was at fault. In any case, the bike and the car collided. The man on the bike was injured. The driver of the car had to stay in jail and wait for the hospital report on the bicycle rider. Luckily, the rider was not killed.Three years later, another automobile first took place. The scene was again New York City, a real estate broker named Henry Bliss stepped off a streetcar. He was hit by a passing car. Once again, no one is sure just how it happened or whose fault it was. The driver of the car was put in jail. Poor Mr. Bliss became the first person to die in a car accident.44. In each accident the driver was ______.A. found guiltyB. set freeC. laughed atD. put in jail for a while
We can't afford a bicycle ()a car.A. even ifB. let aloneC. let out
使用VC6打开考生文件夹下的工程test17_1,此工程包含一个源程序文件test17_1.唧,但该程序运行有问题,请改正程序中的错误,使程序的输出结果如下:Vehicle messageCar messageVehicle message源程序文件test17_1.cpp 清单如下:include <iostream.h>class vehicle{int wheels;float weight;public:/***************** found *****************/void message(void){ cout<<"Vehicle message\n";}};class car:public vehicle{int passenger_load;public:/***************** found *****************/void message (void){cout>>"Car message\n";}};class truck:public vehicle{int passenger_load;float payload;public:int passengers(void){return passenger_load;}};void main(){vehicle * unicycle;unicycle=new vehicle;/***************** found *****************/unicycle.message()delete unicycle;unicycle=new car;unicycle->message();delete unicycle;unicycle=new truck;unicycle->message();delete unicycle;}
若已定义了类Vehicle,则下列派生类定义中,错误的是A.class Car:Vehicle{/*类体略*/);B.class Car:public Car{/*类体略*/);C.class Car:public Vehicle{/*类体略*/);D.class Car:virtual public Vehicle{/*类体略*/);
若vehicle=['train','bus','car','ship'],则vehicle[1]是什么?A.trainB.busC.carD.ship