Javatpoint Logo
Javatpoint Logo

Program to print the following pattern (pascal triangle)

Program to print the following pattern (pascal triangle)

Algorithm

  1. Start
  2. Let i be an integer number.
  3. Let j be an integer number.
  4. Let row be an integer number and initialize by 6.
  5. Let coe be an integer number and initialize by 0.
  6. Repeat step 7 to 14 until all value parsed.
  7. Set i = 0 and check I <= row;
  8. Set j = 1 and check j <= row-i;
  9. Print space.
  10. check if j==0 || i==0
  11. set coe = 1;
  12. Else
  13. Set coe = coe * (i+j-1)/j;
  14. Print coe.
  15. End

JAVA

Python

C program

C# program

PHP Program







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA