Язык программирования FreeBasic |
InsertElement_D
InsertElement_D(List, element,value)
Вставляет элемент типа Double в нужное место списка по указанному номеру.
List - Лист
element - Элемент, на место которого надо вставить
value - Значение
Пример:
#Include"Linked_Lists.bi"
Var list=NewList()
AddElement_D(List,544.444)
AddElement_D(List,22222.2220224)
InsertElement_D(List,2,3343.43243)
FirstElement(list)
Do
? GetList_D(List)
Loop Until NextElement(list)=0
Sleep

Created with the Personal Edition of HelpNDoc: Easy EBook and documentation generator