2019年12月2日

c++ 二维数组定义 二维数组首地址查询

摘要: #include <iostream> using namespace std; int main(){ int a = 0; int arry[3][3] = { {1,2,3}, {55,66,77}, {21,34,11} }; cout << "输出地址 = " << &arry << en 阅读全文

posted @ 2019-12-02 23:36 吉格斯 阅读(1165) 评论(0) 推荐(0) 编辑

c++ helloworld

摘要: #include <iostream> using namespace std; int main() { cout << "hello world!" << endl; system("pause"); return 0; } 阅读全文

posted @ 2019-12-02 23:24 吉格斯 阅读(293) 评论(0) 推荐(0) 编辑

导航