摘要: 题目要求: 简单的例子: 查找list[]中的最大值:int Largest(int list[], int length); 首份实现代码如下: int Largest(int list[], int length) { int i,max; for(i = 0; i max) { max=list[i]; ... 阅读全文
posted @ 2016-03-21 14:58 sunmei 阅读(154) 评论(0) 推荐(0) 编辑