求陣列中最大值 最小值 平均值

2021-08-17 20:43:03 字數 417 閱讀 4647

/**

* 用**實現求陣列的最大值、最小值、平均值

* @author **/

public class arraymaxminpjtest ;

int max = a[0];//認為陣列第乙個元素就是最大值

int min = a[0];//認為陣列第乙個元素就是最小值

int pj = 0;

int sum = 0;

for(int i=0;imax)

if(a[i]sum+=a[i];

}pj = sum/a.length;

system.out.println("最大值為:"+max);

system.out.println("最小值為:"+min);

system.out.println("平均值為:"+pj);}}

pyspark計算最大值 最小值 平均值

需求 使用pyspark計算相同key的最大值 最小值 平均值 說明 最大值和最小值好計算,直接reducebykey後使用python內建的max min方法 平均值計算提供兩種計算方法,直接先上 和執行結果,後面有 記錄 最大值 rdd2 rdd1.reducebykey max 最小值 rdd...

awk 計算平均值,最大值,最小值,求和

檢視最近記憶體使用情況 cat tmp mem.log 30.05 30.06 30.01 30.00 30.00 29.96 29.99 30.02 30.01 30.07 30.40 30.25 30.24 30.08 30.14 30.20 30.26 30.11 30.18 30.19 30...

C Linq之求和,平均值,最大值,最小值

using system using system.collections.generic using system.linq using system.text using system.threading.tasks namespace wolfy.linqaggregation product...