Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class P10_cookieFactory {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- int n = Integer.parseInt(scanner.nextLine());
- int num = 0;
- for (int row = 0; row < n; row++) {
- for (int col = 0; col < n; col++) {
- num = row + col + 1;
- if (num > n) {
- num = 2 * n - num;
- }
- System.out.print(num + " ");
- }
- System.out.println();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement