top of page

Java Program to find Factors of a number

In this blog, we will learn how to find the factors of a number.


Implementation:

public class FindFactor{
        public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		System.out.println("Enter a number:");
		int number = sc.nextInt();
                System.out.print("Factors of " + number + " are: ");
        for(int i = 1; i <= number; ++i) {
            if (number % i == 0) {
                System.out.print(i + " ");
            }
        }
    }
}
Output: 
Enter a number:91
Factors of 91 are: 1 7 13 91 
 

Happy Coding!

Follow us on Instagram @programmersdoor

Join us on Telegram @programmersdoor


Please write comments if you find any bug in the above code/algorithm, or find other ways to solve the same problem.

Follow Programmers Door for more.

25 views0 comments

Recent Posts

See All
bottom of page