05 2013 档案
摘要:# include <stdio.h># include <iostream># include <algorithm>using namespace std;int a[110];bool cmp(int a, int b){ return a>b;}int main(){ int n, m, k, t = 0; while (scanf("%d %d %d", &n, &m, &k) == 3) { int c = 0; for (int i = 0; i < n; ++i) { for (int
阅读全文