1樓:黑馬程式設計師
#include
#include
void main()
2樓:老馮文庫
一、演算法思想
假設n個數儲存在一維陣列中,令第一個數為最大值,從第二個數開始逐個和當前最大值進行比較,若比當前最大值大,則用它替換當前最大值。最後儲存的最大值即為n個數中的最大值。
二、操作過程
49 38 65 97 76 13 27 49 max = 49
^49 38 65 97 76 13 27 49 max = 65
^49 38 65 97 76 13 27 49 max = 97
^49 38 65 97 76 13 27 49 max = 97
^49 38 65 97 76 13 27 49 max = 97
^49 38 65 97 76 13 27 49 max = 97
^49 38 65 97 76 13 27 49 max = 97
^max = 97
三、程式**
#include
using namespace std;
//返回陣列中元素的最大值
//arr:陣列
//n:陣列大小
//返回n個陣列元素的最大值
int max(int arr, int n)
}return maxvalue;
}int main()
;int n = 8;
cout<<"最大值:"<
四、執行測試
3樓:匿名使用者
#include
#include
using namespace std;
int n,x[100009];
int main()
c++中求一個陣列中最大值**怎麼寫
4樓:釗鉼
#include int main()
return 0;
}c++是c語言的繼承,它既可以進行c語言的過程化程式設計,又可以進行以抽象資料型別為特點的基於物件的程式設計,還可以進行以繼承和多型為特點的物件導向的程式設計。c++擅長物件導向程式設計的同時,還可以進行基於過程的程式設計,因而c++就適應的問題規模而論,大小由之。
c++不僅擁有計算機高效執行的實用性特徵,同時還致力於提高大規模程式的程式設計質量與程式設計語言的問題描述能力。
求N個數的最大值C語言,C 求N個數中的最大值
include stdio.h int findmax int x,int m main int n printf input the n n scanf d n printf d n findmax x,n 功能說明 返回陣列中前n個數中的最大值,findmax使用了遞迴呼叫方式 匡龍戈 void...
用函式呼叫求兩個數中的最大值,c語言 用函式呼叫的方式求兩個數當中最大的那個
阿旺讀書 通過如下過程實現求出a b兩個數中的最大值 include int max int a,int b int main void int a,b,c printf 輸入兩個整數 scanf d d a,b c max a,b printf 較大的數是 d n c return 0 int m...
c 對一組數進行排序,並求最大值
流星不死 include using namespace std main for int i 0 i 10 i cout 您好,很高興為您解答,流星不死為您答疑解惑如果本題還有不懂的地方請追問,望採納我的回答。祝樓主學習進步。上面的 可以直接複製到編譯器裡,帶換行。 仙戈雅 include inc...