摘要: 描述 填空,使得程序输出指定结果 #include <iostream> using namespace std; int main() { int * a[] = { // 在此处补充你的代码 }; *a[2] = 123; a[3][5] = 456; if(! a[0] ) { cout << 阅读全文
posted @ 2018-05-29 21:04 Zackary丶Liu 阅读(686) 评论(0) 推荐(0)
摘要: 描述 程序填空,使其输出9 22 5 #include <iostream> using namespace std; class Sample { public: int v; // 在此处补充你的代码 }; void PrintAndDouble(Sample o) { cout << o.v; 阅读全文
posted @ 2018-05-29 20:31 Zackary丶Liu 阅读(663) 评论(2) 推荐(0)