站内搜索
其它 问题列表
问题
请带着以下疑问观看教学视频,并在教学视频完成后移步到讨论区回复以下问题: 1、任何货币的一个必要条件是本身具有价值吗? 2、我们日常生活中所使用的人民币是什么类型的货币?A.。B.我知道了C.。D.。
问题
3、下面程序的运行结果为()。 #include<iostream> using namespace std; class A { static int n; public: A(){n=1;} A(int num){n=num;} void print(){cout<<n;} }; int A::n=2; int main() { A a,b(3); a.print(); b.print(); cout<<endl; }A.11B.13C.23D.33