List myList = [1, 2, 3, 4]; List newList = new List(); for(var i=0; i<myList.length;i++){ newList.add(myList[i]*2); } ...
確定! 回上一頁