#include <iostream>
using namespace std;
class A {
private:
int a;int b;
public:
_________________
{ a = x;b = y; }
void set(int x,int y)
{ a = x;b = y; }
void display( ){
cout<<a<<*′<<b<<′=′<<a * b;
}
};
int main( ){
A a(1,1);
for(int i=1;i<=9;i++){
for(int j=1;____________;j++){
a.set(j,i);
a.display( );
cout<<″″;
}
cout<<endl;
}
return 0;
}
第1空:A(INT X,INT Y)
第2空:J<=I