自考

各地资讯
当前位置:考试网 >> 自学考试 >> 自考真题 >> 工学类 >> C语言程序设计 >> 文章内容

排行热点

全国2011年10月高等教育自学考试C++程序设计试题_第5页

来源:考试网 [ 2011年12月10日 ] 【大 中 小】
四、完成程序题(本大题共5小题,每小题4分,共20分)
46.完成下面类中成员函数的定义。
class test
{
private:
int nl ;
float fl;
public:
test(int,float f);
test(test&);
};
test::test( ________ )
{nl=n; fl=f;}
test:: test(test&t)
{nl=t.nl;
fl=________;}

47.在下面程序中的下划线处填上适当的语句,使程序的输出结果如下:
11,77
11,77
源程序如下:
#include<iostream>
using namespace std;
class base
{
private:
int x,y;
public:
void initxy(int a,int b){x=a;y=b;}
void show()
{________}
} ;
void main()
{
base a,b;
__________
a.show();
b=a;
b.show();
}
48.在下面程序中的下划线处填上适当的程序,使程序的输出结果如下:
x=1,y=2
x=30,y=40
源程序如下:
#include<iostream.h>
class Sample
{
int x,y;
public:
Sample(){x=y=0;}
Sample(int i,int j){x=i;y=j;}
void copy(Sample & s);
void setxy(int i,int j){x=i;y=j;}
void print(){cout<<"x="<<x<<",y="<<y<<endl;}
};
void Sample::copy (________)
{
x=s.x;y=s.y;
}
void func(________)
)
{
s1.setxy(10,20);
s2.setxy(30,40);
}
void main()
{
Sample p(1,2),q;
q.copy(p);
func(p,q);
p.print();
q.print();
}
Sample&s
}

责编:snrvge