02.07.2018, 21:12
Код:
new Iterator:tots<5>;
Iter_Add(tots, 1);
Iter_Add(tots, 4);
Iter_Add(tots, 6);
foreach(new i: tots)
printf("%d", i);
Код:
1 4
new Iterator:tots<5>;
Iter_Add(tots, 1);
Iter_Add(tots, 4);
Iter_Add(tots, 6);
foreach(new i: tots)
printf("%d", i);
1 4
|
Код:
new Iterator:tots<5>;
Iter_Add(tots, 1);
Iter_Add(tots, 4);
Iter_Add(tots, 6);
foreach(new i: tots)
printf("%d", i);
Код:
1 4 |