摘要: View Code 1 #include<iostream> 2 #include<iomanip> 3 //#include"CheckMemoryLeak.h" 4 5 using namespace std; 6 7 void spiral(int n) 8 { 9 int temp=0; //记录层数10 int num=1; //填写数组值11 int i=0,j=0; //控制循环12 int x=0,y=-1; //控方向13 int **N=new int*[n]; //数组14 ... 阅读全文
posted @ 2011-03-09 22:37 landy聪 阅读(240) 评论(0) 推荐(0) 编辑