将下面程序补充完整,使程序输出结果为:
Begin
Welcome
Show
End
程序如下:
#include
usingnamespacestd;
classA{
public:
__________{
cout< < ″Begin″<}
voidshow(){
cout< < ″Show″<}
___________{
cout< < ″End″<}
};
Aobject;
intmain(){
cout< < ″Welcome″<object.show();
return0;
}< /endl;
< /endl;
< /endl;
< /endl;