Advertisement
Flaron

Udemy_21. AllFactors

Sep 14th, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. package lista.Alapok;
  2.  
  3. public class Main {
  4.  
  5. public static void printFactors(int number) {
  6. if(number<1) System.out.println("Invalid Value");
  7. if (number > 0) {
  8. for (int i = 1; i <= number; i++) {
  9. if (number % i == 0) {
  10.  
  11. System.out.println(i);
  12. }
  13. }
  14. }
  15. }
  16.  
  17. public static void main(String[] args) {
  18. printFactors(100);
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement