How to get all the factors of a number in Java

1 Answer

0 votes
package javaapplication1;

public class JavaApplication1 {
  
    public static void main(String[] args) {
         
        int n = 100;
 
        for(int i = 1; i <= n; i++)
        {
            if (n % i == 0)
                System.out.format("%d ",i);
        }
    }
}
    
/*
run:
   
1 2 4 5 10 20 25 50 100
    
*/

 



answered May 22, 2017 by avibootz

Related questions

1 answer 130 views
2 answers 154 views
1 answer 188 views
1 answer 166 views
1 answer 152 views
1 answer 145 views
1 answer 154 views
154 views asked May 22, 2017 by avibootz
...