举一反三
- 运行下列程序,第1行输出是____,第2行输出是____,第3行输出是____。 #include[ iostream ] using namespace std; int a, b(1); int main( ) { int a=2; { int a=3; a+=10; b+=10; cout<<a+b<<endl; } a+=100; b+=100; cout<<a+b<<endl; cout<<::a+::b<<endl; return 0; }
- 运行下列程序,第1行输出是____,第2行输出是____,第3行输出是____。 #include[iostream] using namespace std; class A{ int a; public: A( ){ a=0; cout<<a<<endl; } A(int t){ a=t; cout<<a<<endl; } A(A &t){ a=t.a+10; cout<<a<<endl; } }; int main(void) { A a1,a2=1,a3=a2; return 0; }
- 运行下列程序,第1行输出是____,第2行输出是____,第3行输出是____,第4行输出是____。 #include[iostream] using namespace std; class A{ int a; public: A( ){ a=1; cout<<a<<endl; } ~A(){ a--; cout<<a<<endl; } }; class B{ int b; A a1; public: B( ){ b=3; cout<<b<<endl; } ~B(){ b--; cout<<b<<endl; } }; int main( ) { B b; return 0; }
- 运行下列程序,第1行输出是____,第2行输出是____,第3行输出是____。[br][/br]#include[ iostream ][br][/br]using namespace std;[br][/br]int a, b(1);[br][/br]int main( )[br][/br]{[br][/br] int a=2;[br][/br] {[br][/br] int a=3;[br][/br] a+=10;[br][/br] b+=10;[br][/br] cout[<a+b<<endl;<br] }[br][/br] a+=100;[br][/br] b+=100;[br][/br] cout[<a+b<<endl;<br] cout[<::a+::b<<endl;<br] return 0;[br][/br]}
- 下列程序运行时,输出的第1行是__(1)__,第2行是__(2)__,第3行是__(3)__,第4行是__(4)__,第5行是__(5)__,第6行是__(6)__。 #include[iostream] using namespace std; class A{ public: A(int t){cout<<t<<endl;} }; class B{ int a,b; A c; const int d; int e; int &f; public: B(int t):d(t++),f(a),b(t++),c(t++) { e=t++; a=t++; } void print() { cout<<a<<endl; cout<<b<<endl; cout<<d<<endl; cout<<e<<endl; cout<<f<<endl; } }; int main() { B test(1); test.print(); system("pause"); return 0; }