Advertisement
Master_Tiroman

Little win

Aug 20th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. package com.example.lib;
  2.  
  3. public class IF {
  4. public static void main(String args[])
  5. throws java.io.IOException {
  6.  
  7. for(int i=2; i<=100;i++){
  8. System.out.print("Делители "+i+": ");
  9. for(int j=2; j<i;j++){
  10. if(j==(i/2)+1) {
  11. System.out.println();
  12. break;
  13. }
  14. if (i % j == 0) {
  15. System.out.print(j + " ");
  16. }
  17. }
  18. System.out.println();
  19. }
  20.  
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement