#include <iostream>
using namespace std;
class base
{
private:
int x,y;
public:
void init xy( int a,int b){x=a;y=b;}
void show( base*p);
} ;
inline void base::show(____________)
{
cout<< p- >x<<""<<p- >y<<endl;
}
void print( base*p)
{
p -> show(p);
}
void main()
{
base a;
a.init xy(67 ,90);
print(______________);
}
第1空:BASE *P
第2空:&A