**如下:
package classdemo; public class testarray
// 2.使用隨機數初始化陣列
// double mylist = new double[10];
// for (int i = 0; i < mylist.length; i++)
// 3.列印陣列
for (int i = 0; i < mylist.length; i++)
// 4.對所有元素求和
double total = 0;
for (int i = 0; i < mylist.length; i++)
system.out.println("the sum of the array is: " + total);
// 5.找出最大元素
double max = mylist[0];
for (int i = 1; i < mylist.length; i++)
}system.out.println("the max value of the array is: " + max);
// 6.找出第乙個最大元素的下標值
double max1 = mylist[0];
int indexofmax = -1;
for (int i = 1; i < mylist.length; i++)
}system.out.println("the index of max in the array is: " + indexofmax);
// 7.隨意打亂(shuffling)
for (int i = 0; i < mylist.length; i++)
// 8.向左迴圈移動陣列中的元素
} private static void testwork02() ;
double mylist = new double[3];
mylist [0] = 5.6;
mylist [1] = 4.5;
mylist [2] = 3.3;
for (int i = 0; i < mylist.length; i++)
} private static void testwork01()
for (int i = 0; i < number_of_elements; i++) }}
希望能夠有所幫助
陣列的基本操作
預備知識 在用下標訪問元素時,vector使用的是vector size type型別,而陣列下標的 正確型別是size t 程式清單 執行結果 the elements of array1 is below array1 0 0 array1 1 1 array1 2 2 array1 3 3 a...
陣列的基本操作
學習過程中遇到了運算元組的多種方法,暫時沒有時間,先記錄下來,有時間再詳細補充。ok,可以開始了,最近在學習vue.js,其中有一部分是介紹運算元組的方法,想了想,也沒記住幾個,所以就記錄下來。查詢了一波,還缺少了一些內容,以下沒有序號的為新增內容 sort 用於對陣列的元素進行排序。arrayob...
陣列的基本操作
一.排序常見的兩種方法 乙個是冒泡法排序 乙個是直接排序 效能上冒泡法排序 優於直接排序 title bubblesort description 使用冒泡法排序 公升序 author lizhang date 2018年11月19日 上午9 33 01 param arr 需要排序的陣列 thro...