Pattern Programs2

1 2 3
  • Write a program to print following pattern.
    SAMPLE INPUT
    4
    SAMPLE OUTPUT
    1
    2 3
    4 5 6
    7 8 9 10 
    Click Here for Solution
  • Write a program to print following pattern.
    SAMPLE INPUT
    4
    SAMPLE OUTPUT
    1
    2 3
    4 5 6
    7 8 9 10 
    4 5 6
    2 3
    1
    Click Here for Solution
  • Write a program to print following pattern.
    SAMPLE INPUT
    4
    SAMPLE OUTPUT
    1
    3 2
    4 5 6
    10 9 8 7
    Click Here for Solution
  • Write a program to print following pattern.
    SAMPLE INPUT
    4
    SAMPLE OUTPUT
    1
    3 2
    6 5 4
    10 9 8 7
    Click Here for Solution
1 2 3