Originally Posted by
niek_e
No it won't. If you would just draw out a table on paper with "count", "factoral" and the product of both, you could have easily found out that it counts from 100-10 .
Besides, why use an addtional variable anyway? Why not do something like:
count = 0
count = count + 1
if count <= 10 print count
else -> end
Does this flowchart do any better?