四级阅读 Model Test 2 (15选10)
举一反三
- 四级阅读 Model Test 3 (15选10)在填空中填入对应的字母。
- Model Test 1 (15选10)
- model test 3
- Model Test 1 (匹配)
- 阅读以下程序,写出运行结果。 #include using namespace std; class Test { private: int num; public: Test(); Test(int n); }; Test::Test() { cout << "Init defa" << endl; num = 0; } Test::Test(int n) { cout << "Init" << " " << n << endl; num = n; } int main() { Test x[2]; Test y(15); return 0; }