摘要: 输入若干个整数求出其最大值。 源代码: #include using namespace std; int Largest(int list[],int length) { int i,max=list[0]; for(i=0;imax) max=list[i]; } return max; } void main() { int max... 阅读全文
posted @ 2016-03-21 14:56 底云飞 阅读(1314) 评论(0) 推荐(0) 编辑