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
}