06.09.2012, 09:14
count with loop? just a remind, this is a loop. it interact each second thousands of times.
pawn Код:
contloop(start,end)
{
for(; start < end; ++start)
{
printf(#%d,start);
}
}
// usage
contloop(5,10);

