Factors and Other Properties
A simple program to determine factors and other properties of a given number. First up, read the number from the user. Then, using an iterative for loop, determine the factors of the number and add them to an array. This is a brute force search, so by only searching up … Continue reading