摘要: 题目: 对于一个N*M矩阵,请顺时针螺旋打印输出;如 3 * 4 矩阵,1 2 3 410 11 12 59 8 7 6输出: 1 2 3 4 5 6 7 8 9 10 11 12 1 #include 2 // nomally print matric 3 void print_matri... 阅读全文
posted @ 2016-01-25 15:33 mizhouli 阅读(157) 评论(0) 推荐(0)