📌  相关文章
📜  最后一个元素数组java代码示例

📅  最后修改于: 2022-03-11 14:52:21.838000             🧑  作者: Mango

代码示例2
// Array of doubles
double[] array_doubles = {2.5, 6.2, 8.2, 4846.354, 9.6};

// First position
double firstNum = array_doubles[0]; // 2.5

// Last position
double lastNum = array_doubles[array_doubles.length - 1]; // 9.6