Created
May 21, 2014 10:18
-
-
Save Manume/929f5ba36131aaac2205 to your computer and use it in GitHub Desktop.
Program to print the first 10 lines of pascal's triangle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream.h> | |
#include <conio.h> | |
#include <iomanip.h> | |
long triangle(int x,int y); | |
int main() | |
{ | |
clrscr(); | |
const lines=10; | |
for (int i=0;i<lines;i++) | |
for (int j=1;j<lines-i;j++) | |
cout << setw(2) << " "; | |
for (int j=0;j<=i;j++) | |
cout << setw(4) << triangle(i,j); | |
cout << endl; | |
getch(); | |
} | |
long triangle(int x,int y) | |
{ | |
if(x<0||y<0||y>x) | |
return 0; | |
long c=1; | |
for (int i=1;i<=y;i++,x--) | |
c=c*x/i; | |
return c; | |
} | |
output | |
1 10 45 120 210 252 210 120 45 10 1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment