輸入若干個整數求出其最大值。

輸入若干個整數求出其最大值。 源代碼: #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)          max=list[i];    }
相關文章
相關標籤/搜索