Skip to content

Latest commit

 

History

History

P019

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Problem 019

Write a program which prints the Pascal-Khayam triangle up to line N.

Persian Description

برنامه ای بنویسید که مثلث پاسکال خیام را تا سطر N چاپ کند

Sample Input/Output

Input:

5

Output:

                1
           1        1
        1       2       1
    1       3       3       1
1       4       6       4       1