摘要: Question:http://poj.org/problem?id=1753问题点:穷举。 1 #include 2 using namespace std; 3 bool a[4][4];//记录输入 4 bool b[4][4];//记录操作 5 bool c[4][4];//中间变量 6 ... 阅读全文
posted @ 2015-09-16 22:13 月生丶 阅读(190) 评论(0) 推荐(0)
摘要: Question:http://poj.org/problem?id=1001问题点:大数运算(求幂) 1 #include 2 using namespace std; 3 #define max 1000 4 char a[max]; 5 char b[max]; 6 char c[max];... 阅读全文
posted @ 2015-09-16 14:15 月生丶 阅读(339) 评论(0) 推荐(0)