Forum Moderators: coopster
//repeat loop till int >=30
for $int = 0; $int <= 30; $int++
//is the number divisible by 3 - if true echo
if $int % 3;
echo $int;
//is the number divisible by 4 - if true echo
if int$ % 4;
echo $int;
//if flase to above ignore it
elso repeat;
also need to count the true outputs?
Thanks