摘要: 简单题#include <iostream>#include <cstdlib>#include <cstdio>#include <cstring>using namespace std;#define maxn 105int n;int sum_row[maxn];int sum_col[maxn];int f[maxn][maxn];void input(){ for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) scanf("%d", &f[ 阅读全文
posted @ 2013-06-08 19:39 undefined2024 阅读(169) 评论(0) 推荐(0) 编辑