举一反三
- 运行下列程序,第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行输出是____。 #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行是__(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; }
- 运行下列程序,第1行输出是____,第2行输出是____,第3行输出是____,第4行输出是____。[br][/br] #include[ iostream ] using namespace std; int a, b(1); void fun(int n) { static int a=5; int b=5; a+=n; b+=n; cout<<a+b<<endl; } int main( ) { int a=10; { int a=20; fun(a); fun(b); } cout<<a+b<<endl; cout<<::a+b<<endl; return 0; }
- 阅读下列程序,写出运行结果。 #include [iostream] using namespace std; int main() { int a = 1, b = 2; bool x, y; cout [< (a++)+(++b) << endl; cout << a % b << endl; x = !a]b; y = a-- && b; cout << x << endl; cout << y << endl; }