Вы можете сделать приращение count
каждый раз, когда bool[i]
равно true
, затем перейти к следующей строке, когда count
равно 15
, и сбросить count
обратно на 0
.
Вот как теперь будет выглядеть print
l oop:
System.out.println("List of prime numbers upto given number are : ");
int count = 0;
for (int i = 2; i< bool.length; i++) {
if(bool[i])
{
if (count == 15) {
count = 0;
System.out.println();
}
System.out.print(i + " ");
count++;
}
}
Вывод:
Enter the number that you want to find all the prime numbers up to it: 120
List of prime numbers upto given number are :
2 3 5 7 11 13 17 19 23 29 31 37 41 43 47
53 59 61 67 71 73 79 83 89 97 101 103 107 109 113