我正在學習列表並添加/刪除。在下面的代碼中,我創建一個列表,生成一個隨機數 - 然後要永久刪除列表中的號碼:瞭解列表添加/刪除值
cardsLST.AddAll(Array As Int(1,2,3,4,5)) 'create the list
s = Rnd(1,6) 'generate a random number 1-5
Msgbox(s,"") 'display the randomly generated number
Msgbox(cardsLST,"") 'display the current list members
cardsLST.RemoveAt(s) 'remove the generated value from the list
Msgbox(strtCardsLST,"") 'display the updated list members
我不能讓數字感...例如... 如果我生成1,則從列表中刪除2。 如果我生成一個5,我得到一個出界異常