摘要: #include int max(int a,int b) { int c; if(a>b) c=a; else c=b; return c; } int main() { FILE *fin,*fout; int a[8][8],i,j; fin=fopen("in.... 阅读全文
posted @ 2016-09-13 18:12 LutyBKY 阅读(254) 评论(0) 推荐(0) 编辑