public class Solution { public static void main(String[] args) { int count = 0; for(int i = 100; i <= 1000; i++) { if(i % 5 == 0 ^ i % 6 == 0) { System.out.print(i + " "); count++; if(count == 10) { System.out.println(); count = 0; } } } } }
public class Solution { public static void main(String[] args) { int count = 0; for(int i = 100; i <= 1000; i++) { if(i % 5 == 0 ^ i % 6 == 0) { System.out.print(i + " "); count++; if(count == 10) { System.out.println(); count = 0; } } } } }