RosettaCodeData/Task/Tau-function/Phix/tau-function-1.phix

5 lines
119 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
for i=1 to 100 do
printf(1,"%3d",{length(factors(i,1))})
if remainder(i,20)=0 then puts(1,"\n") end if
end for