Factors
This program is rather useless, all it does is figure out the factors of a number. For example: The factors of 25 are 1,5,25. It may be of use when icorperated into a program, but I have not figured that out yet. It may be of use to lazy people as well. Again, this is a program I wrote while I was bored in math class. The '=>' is STO. The 'int' can be found in: MATH; B NUM.
Print "FINDING FACRORS"
Input A
0=>C
Label B
C+1=>C
A/C=>D
D-(int D)=>G
If A=CGoto F
If G=0Goto E
Goto B
Label E
Print C
Goto B
Label F
Print C
Print "DONE"
End