public class Pascal { private static void printPascalLine (int n) { if (n < 1) return; int m = 1; System.out.print("1 "); for (int j=1; j