int array []; // declare an array with elements of type int array = new int[10]; // allocate space for 10 elements on heap array[0]=3; // set the 0th element ...
確定! 回上一頁