标题: 幻方填空 16 ? ? 13 ? ? 11 ? 9 ? ? * ? 15 ? 1 答案是一个整数,请通过浏览器直接提交该数字。 注意:不要提交解答过程,或其它辅助说明类的内容。 #include<cstdio>#include<iostream>#include<algorithm>usin Read More
posted @ 2017-03-29 20:42 地对地导弹2 Views(475) Comments(0) Diggs(0)
#include<iostream>using namespace std;int a[4][5];int s;//保存计数器void bck(int i, int j)//递归{ if (a[i][j] == 8){ s++; return; }//函数出口 if (i + 1 > 4 || j Read More
posted @ 2017-03-29 18:59 地对地导弹2 Views(241) Comments(0) Diggs(0)