藍橋杯 整數平均值

2021-08-21 17:10:22 字數 556 閱讀 7076

題目描述

編寫函式,求包含n個元素的整數陣列中元素的平均值。要求在函式內部使用指標操縱陣列元素,其中n個整數從鍵盤輸入,輸出為其平均值。 

(樣例說明:5為輸入資料的個數,3  4  0  0  2  是以空格隔開的5個整數)輸入無

輸出無樣例輸入

5  

3 4 0 0 2

樣例輸出

1
程式設計**如下:

public static void main(string args) {

scanner sc = new scanner(system.in);

int n = sc.nextint();

int sum = 0;

int arr = new int[n];

for (int i = 0; i < n; i++) {

arr[i] = sc.nextint();

for (int i = 0; i < n; i++) {

sum += arr[i];

system.out.println(sum / n);

樹上平均值

給出一棵樹,求出乙個結點的集合,該集合滿足條件 1 根結點不在集合中 2 任何兩個節點只有乙個公共祖先 3 每個節點要兩個值,w 根結點到這個結點的路徑上所有邊的權值和 d 深度 對每個集合求w之和 d之和的最大值。include include include includeusing names...

平均值編碼

針對高基數定性特徵 類別特徵 的資料預處理 一般情況下,針對定性特徵,我們只需要使用sklearn的onehotencoder或labelencoder進行編碼 onehotencoder 則能通過啞編碼,製作出乙個m n的稀疏矩陣 labelencoder 能夠接收不規則的特徵列,並將其轉化為從l...

字首平均值

定義 計算陣列x裡的字首平均值,表明從陣列第乙個數開始求和,前n個的和就除以n,依次計算到陣列所有元素的和除以總數結束,所得的n個結果就是所有要求的平均值,然後放入乙個新的陣列。我們想計算出陣列a,該陣列滿足的條件為 當j 0,n 1時,a j 是x 0 x j 的平均值。public static...