66 lines
518 B
Plaintext
66 lines
518 B
Plaintext
|
|
|
|
|
|
|
|
|
|
Command: factor - factor an integer less than 2**31
|
|
Syntax: factor number
|
|
Flags: (none)
|
|
Example: factor 450180 # Print the prime factors of 450180
|
|
|
|
Factor prints the prime factors of its argument in increasing
|
|
order. Each factor is printed as many times as it appears in the
|
|
number.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|