public class Main
{
public static void main(String[] args)//来自 时代Java公众号 - nowjava.com
{
// initializer list specifies the initial value for each element
int[] array = {132, 217, 614, 118, 915, 14, 910, 701, 60, 37};
System.out.printf("%s%8s%n", "Index", "Value"); // column headings
// output each array element's value
/**代码未完, 请加载全部代码(NowJava.com).**/
本文系作者在时代Java发表,未经许可,不得转载。如有侵权,请联系nowjava@qq.com删除。