摘要: #include<iostream> using namespace std; int Largest(int list[], int length) { int i,max=list[0]; for(i = 0;i < length ;i ++ ) { if(list[i] > max) { ma 阅读全文
posted @ 2016-03-21 15:40 键盘已坏 阅读(102) 评论(0) 推荐(0)