填空题

程序的输出结果是 【14】 。 #include <iostream> using namespace std; class A{ int x; public: A(int x=1):x(x){cout<<x;} }; void main(){ A a,b(2),c(3); }

【参考答案】

123