填空题

下列程序的运行结果为______。
#include<iostream.h>
class myclass
private:
int a,b,c;
public:
void fun( )

int a;
a=10;
this->a=5;
b=6;
this->c=7;
cout<<"a="<<a<<", this->a="<<this->a<<endl;

;
void main( )
myclass objl;
obj1.fun( );

【参考答案】

a=A0,this->a=E