Description
Write a program that calculates and displays all factors of a number with a function. A factor is any number that divides into a number evenly.
For examples: Factors of 20 are 1,2,4,5,10,20
For the program:
- Prompt the user for a number or use an input
- Call a function to calculate all factors using loops and conditionals and modulus
- Display all factors to the page
Explanation & Answer
Done
Code:
Factors Calculator
Enter a number:
...