T000ny

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2013年5月6日

摘要: #include<iostream> using namespace std; int ROW = 5; int COL = 5; int main() { int **a = new int*[ROW]; for(int i = 0; i < ROW; i++) a[i] = new int[COL]; for(int r = 0; r < ROW; r++) for(int c = 0; c < COL; c++) a[r][c] = 6; for(int i = 0; i < ROW; ... 阅读全文
posted @ 2013-05-06 12:15 T000ny 阅读(392) 评论(0) 推荐(0) 编辑