填空题
运行下列程序,第1行输出是____,第2行输出是____。#includeusing namespace std;class A{int a,b;public:A(int t1,int t2){ a=t1; b=t2; }void f(int n){ int a=5;a+=n;b+=n; }void show(){ cout<
填空题
运行下列程序,第1行输出是____,第2行输出是____,第3行输出是____。#includeusing namespace std;class A{int a;public:A( ){ a=0; cout<
填空题