摘要: 整整两天了,都打不开网页,是不是我提交的次数太多了?nyoj 10: 1 #include 2 #include 3 int a[103][103],b[103][103]; 4 int X,Y; 5 int maxx(int a,int b) 6 { 7 return a>b?a:b; 8 } 9 int max(int a,int b,int c,int d)10 {11 return maxx(maxx(a,b),maxx(c,d));12 }13 int kkk(int x,int y,int c)14 {15 if(x==0||y==0||x>X||y>Y||... 阅读全文
posted @ 2013-10-06 18:56 ABCDL 阅读(209) 评论(0) 推荐(0) 编辑