public class Test{public static void main(String[] args) {int x = 1, i = 1;while (i < 50) {if (i % 2 != 0) {System.out.print(i + " ");x++;if (x % 6 == 0) {System.out.println();}}i++;}}}