一起答

C++程序设计2009年1月真题试题及答案解析(04737)

如果您发现本试卷没有包含本套题的全部小题,请尝试在页面顶部本站内搜索框搜索相关题目,一般都能找到。
  1. 定义堆栈类模板Stack(先进后出),栈的大小由使用者确定。要求该类模板对外提供如下二种基本操作:

    (1)push入栈(2)pop出栈,用数组来实现

    #include

    using namespace std;

    template

    class Stack{

      T x[size];

      int current;

      public:

      Stack( ){current=0;}

      ....push(....);

      ....pop(....);

    };

    请写出两个函数的过程(如果需要形式参数,请给出形参类型和数量,以及返回值类型)

  2. 给出下面程序的输出结果

      #include"iostream.h"

      int main( )

      {

      int i=17;

      while(i>=10)

      if(--i%4==3)continue;

      else

      cout<<"i="<

      }

  3. 给出下面程序的输出结果

      #include

      using namespace std;

      void main( )

      {

      int num=300;

      int &ref=num;

      cout<

      ref=ref-100;

      cout<<" "<

      num=num-50;

      cout<<" "<

      }

  4. 给出下面程序的输出结果

    #include

    using namespace std;

    class Simple

    {

    int x, y;

    public:

    Simple( ){x=y=0;}

    Simple(int i, int j){x=i; y=j;}

    void copy(Simple&s);

    void setxy(int i, int j){x=i; y=j;}

    void print( ){cout<<"x="<

    };

    void Simple:: copy(Simple&s)

    {

    x=s.x; y=s.y;

    }

    void func(Simple s1,Simple&s2)

    {

    s1.setxy(30, 40);

    s2.setxy(70, 80);

    }

    void main( )

    {

    Simple obj1(1, 2), obj2;

    obj2.copy(obj1);

    func(obj1,obj2);

    obj1.print( );

    obj2.print( );

    }

  5. 在下划线处填上缺少的部分。源程序如下:

    #include

    using namespace std;

    ___________

        T fun(T x)

        {

        _________y;

        y=x*x-T(5);

        return y;

        }

        void main( )

        {

        float a=2;

        cout<

        }

  6. 请写出myTextl.txt文本文件中的内容

    #include

    #include

    using namespace std;

    #include

    void main( )

    {

    ofstream myFile1;

    myFile1.open("myText1.txt");

    cout<<"Enter the data in Chinese format(e.g.,2008,May 25):"<

    string Date("2008,January 1");

    string Year=Date.substr(0,4);

    int k=Date.find(",");

    int i=Date.find(" ");

    string Month=Date.substr(k+1, i-k-1);

    string Day=Date.substr(i+1, 2);

    string NewDate=Day+" "+Month+" "+Year;

    myFile1<<"original date:"<

    myFile1<<"Converted date:"<

    myFile1.close( );

    }

  7. 下面程序的运行结果如下:

    B::display( )

    C::display( )

    在下划线处填上缺少的部分。源程序如下:

      #include

      using namespace std;

      class B

      {

      public:

        _________display( ) {cout<< "B::display( ) "<

        };

        class C: public B

        {

        public:

             __________display( ){cout<<"C::display( )"<

        };

        void fun(B*p)

        {

        p->display( );

        }

        void main( )

        {

        B b, *pb;

        C c;

        pb=&b;

        fun(pb);

        pb=&c;

        fun(pb);

        }

  8. 下面程序的运行结果如下:

        This is line1

        This is line2

        This is line3

    在下划线处填上缺少的部分。源程序如下:

        #include

        #include_________

        using namespace std;

        void main( )

        {

        fstream fin, fout;

        fout.open("my. txt", ios:: out);

        if(!fout.is_open( ))

           return;

        for(int i=0;i<3;i=i+1)

           fout<<"This is line"<

        fout.close( );

        fin.open("my.txt",ios:: in);

        if(! fin.is_open( ))

           return;

        char str[100];

        while(_________)

        {

          fin.getline(str,100);

          cout<

        }

        fin.close( );

        }

  9. 完成下面程序,使其输出10,并在退出运行时正确释放分配给指针的存储空间。

    #include

    using namespace std;

    void main( )

    {

    int *a, *p;

    a=new int(10);

    p=_________;

    cout<<*p<

    _________

    }

  10. #include

    using namespace std;

    class base

    {

    private: int x;

    public: base(int a){x=a;}

    int get( ){return x;}

    void showbase( ) {cout<<"x="<

    };

    class Derived: public base

    {private: int y;

    public: Derived(int a,int b): base(a){y=b;}

    void showderived( )

    {cout<<"x="< 点击查看答案

  • #include

    main( ){

    int x=6;

    const int*p=x;

    cout<<*p<

    }

  • #include

    class point{

    private: float x, y;

    public: f1(float a, float b){x=a; y=b;}

    point( ){x=0; y=0;}

    void getx( ){cout<

    void gety( ){cout<

    };

    void print(point a){cout<

    main( ){

    point a;

    a.f1(3.0, 5.0);

    print(a);

    }

  • #include

    class f{

    private: int x, y;

    public: fl(int a, int b){x=a;y=b;}

    void print( ){cout<

    };

    main( ){

    f a;

    a.f1(1.5,1.8);

    a.print( );

    }

  • #include

    class f{

    private: float x, y;

    public:f(float a, float b){x=a; y=b;}

    float max( ){return(x

    };

    main( ){

    f a(1.5, 3.8);

    cout<

    }

  • #include

    class test{

    private: int x;

    public: test(int a){x=a;}

    void set(int a){x=a;}

    void get( ){cout<

    }

    main( ){

    const test a(3);

    a.set(5);

    a.get( );

    }

  • C++的流类库预定义的与标准输出设备相联接的流是_________。

  • 执行下列代码

    cout<

    程序输出结果是_________。

  • 从一个或多个以前定义的类产生新类的过程称为_________。

  • 在vector类中向向量尾部插入一个对象的方法是_________。

  • C++中用于动态创建对象,并返回该对象的指针的关键字是_________。

  • 类的简单成员函数是指声明中不含_________、volatile、static关键字的函数。

  • 与操作对象的数据类型相互独立的算法称为_________。

  • 有下列代码int a=0; double b=0; cin>>a>>b;当用键盘输入1.25时,b=_________。

  • 对于类Point而言,其析构函数的定义原型为_________。

  • 对象成员构造函数的调用顺序取决于这些对象在类中说明的顺序,与它们在成员初始化列表中给出的顺序_________。

  • 在源程序中有宏定义:#define PI 3.14,则若不想使该宏定义影响到程序的其它地方,可以使用_________删除该宏定义。

  • 类和其它数据类型不同的是,组成这种类型的不仅可以有数据,还可以有对数据进行操作的__________。

  • C++中使用_________关键字说明函数为内联函数。

  • 写出声明一个复数对象的语句,并使该对象被初始化为2.2+1.3i,此声明语句是_________。

  • 若有函数定义为:

    int add(int m1=0, int m2=2, int m3=4)

    { return m1+m2+m3; }

    在主函数中有int s=add(1)+add(0, 1)+add(0, 1, 2);

    则执行此语句后s的值为_________。

  • 静态联编所支持的多态性称为_________的多态性。

  • C++程序必须有且只有一个主函数,其函数名为_________。

  • 执行下列代码

    int b=100;

    cout<<"Hex:"<

    程序的输出结果是_________。

  • 若使用标准输出流把整型变量a的值输出到屏幕上,实现此操作的C++语句是_________。

  • C++将数据从一个对象流向另一个对象的流动抽象为“流”,从流中获取数据的操作称为_________。

  • 派生类的对象可以访问以下那种情况继承的基类成员(  )

  • 如果类A被声明成类B的友元,则(  )

  • 下列哪个编译指令属于条件编译指令(  )

  • 关于类的静态成员函数描述错误的是(  )

  • 类的构造函数在以下什么情况下会被自动调用(  )

  • 下列关于析构函数描述正确的是(  )

  • 设有函数T Sum(T x, T y){return x+y;},其中T为模板类型,则下列语句中对该函数错误的使用是(  )

  • 内联函数的特点是(  )

  • 类的私有成员可在何处被访问(  )

  • 在下列成对的表达式中,运算结果类型相同的一对是(  )

  • 下列函数不能和函数void print(char)构成重载的是(  )

  • 设存在函数int min(int, int)返回两参数中较小值,若求15,26,47三者中最小值,下列表达式中错误的是(  )

  • 函数默认参数在函数原型中说明,默认参数必须放在参数序列的(  )

  • 设函数void swap(int&, int&)将交换两形参的值,如两整型变量int a=10; int b=15;则执行swap(a, b)后,a、b值分别为(  )

  • 在定义类成员时,为产生封装性,则需使用哪个关键字(  )

  • 设存在整型变量int x,则下列句与其它三项含义不同的是(  )

  • 用于标识十六进制前缀或后缀是(  )

  • 包含自定义头文件file.h的预处理指令是(  )

  • 在C++中使用流进行输入输出,其中专用于从键盘进行输入的流是(  )

  • C++源程序文件扩展名为(  )

  • 相关试卷