- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
count=15;
a=15;
b=2.5;
...
function addlistbox()
i=1;
while i<=count do
INIFile.SetValue("temp.ini", "temp", i, a);
end
i=1;
while i<=count do
ttt=INIFile.GetValue("temp.ini", "temp", i);
INIFile.SetValue("temp.ini", "temp", i, Math.Pow(ttt, b*i));
end
i=1;
while i<=count do
ttt=INIFile.GetValue("temp.ini", "temp", i);
ListBox.AddItem("stepeni", i, ttt);
end
end
Приятель прислал.
всю эту прелесть можно написать так:
function addlistbox(a,b,count)
for i=1,count do
ListBox.AddItem("stepeni", i, Math.Pow(a, b*i));
end
end