![]() |
|
#1
|
|||
|
|||
![]() Подскажите пожалуйста. Хочу использовать
Код:
a:=random(ListBox1.Items.Count/8); Как можно организовать подругому данное присваивание? Код:
a:=random(ListBox1.Items.Count/8) "I remember the good old days, when computers were mainframes, analysts were magicians,and programmers punced cards..." |
#2
|
||||
|
||||
![]() 1)
Код:
a:=random(Round(ListBox1.Items.Count/8)) Код:
a:=random(ListBox1.Items.Count div 8) |
#3
|
|||
|
|||
![]() Спасибо большое!))
Проблема решилась)) "I remember the good old days, when computers were mainframes, analysts were magicians,and programmers punced cards..." |