iT邦幫忙

2023 iThome 鐵人賽

DAY 10
0
SideProject30

人機控制介面之開發應用系列 第 10

用陣列的元素數來計算全元素總和與平均-Unity-C#

  • 分享至 

  • xImage
  •  
  1. 先求陣列中全部元素的總和
  2. 將總和除以素數,得平均

程式碼

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class AverageArray : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
        int[] score = { 72, 50, 47, 14, 98, 6, 55, 84 };

        int sum = 0;

        for(int i = 0; i < score.Length; i++)
        {
            sum += score[i];
        }

        float average = 1.0f * sum / score.Length;
        Debug.Log(average);
    }
}

Console輸出
https://ithelp.ithome.com.tw/upload/images/20230922/20160744Gz4pb1wD8k.png

參考來源:Unity 遊戲設計育成攻略


上一篇
透過Unity練習for迴圈與陣列的簡潔應用
下一篇
建立帶有引數(argument)的方法(method)-C#-Unity
系列文
人機控制介面之開發應用37
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言