勉強始めたばっかのものです
using UnityEngine;
using System.Collections;
public class Test : MonoBehaviour {
void Start () {
int[] array = new int[5]; array [0] = 10; array [1] = 90; array [2] = 90; array [3] = 70; array [4] = 20; for (int a = 0; a < 5; a++) { Debug.Log (array [a]); } for (int b = 4; b < 5; b--){ Debug.Log (array [b]); } } void Update () { }
}
for文を使い、配列の各要素の値を順番に表示してください
for文を使い、配列の各要素の値を逆順に表示してください
という課題をしてるんでが
10,90,90,70,20,20,70,90.90.10とコンソールにでて最後に
IndexOutOfRangeException: Array index is out of range.
Test.Start () (at Assets/Test.cs:20)
というエラーが出るんですがどうすればいいですか?