行政法规可以设定除_______以外的行政处罚。
A.限制人身自由 B.吊销企业营业执照C.罚款 D.没收财产
参考答案:A
Miss Gao isn’t at home. She to the station to meet her friends.
A.go
B.has been
C.will go
D.has gone.
有如下程序: #include<iostream> using namespace std; class Con { char ID; public: Con():ID(’A’) { cout<<1;} Con(char ID) :ID(ID) { cout<<2;} Con(Con& c):ID(c.getID()) {cout<<3; } char get1D()const{return ID;} }; void show(Con c){ cout<<c.getID();} int main() { Con c1; show(c1); Con c2(’B’); show(c2); return 0; } 执行上面程序的输出是______。