Computer Science, asked by garima2903, 1 year ago

a program to print Pascal triangle in blue J???

Answers

Answered by aqibkincsem
0

C- Program to print Pascal Triangle in blue J. normally, Pascal’s triangle is a set of numbers which is also arranged in the form of a triangle that allows us to understand it better with the help of a diagram.

The pattern of pascal’s triangle plays important role in easy understanding.

Answered by 8521adityasharma49
2

Answer:

Algorithm

  • Take a number of rows to be printed, n.
  • Make outer iteration I for n times to print rows.
  • Make inner iteration for J to (N - 1).
  • Print single blank space ".
  • Close inner loop.
  • Make inner iteration for J to I.
  • Print nCr of I and J.
  • Close inner loop.

Explanation:

Thisis the correct answer

Make the answer Brilliant

Follow me

Similar questions