📅  最后修改于: 2022-03-11 14:52:35.309000             🧑  作者: Mango
int[] candy = new int[10]; //Array size is 10
//first array: Index 0, last array index: 9.
for (int x=0; x < candy.length; x++)
if (x == candy.length - 1)
//Reached last element of array