write a pragram to find pascal triangle using class function | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

write a pragram to find pascal triangle using class function

i don't no this answer pls tell me

6th Nov 2016, 5:18 PM
Sreeju R S
Sreeju R S - avatar
1 Answer
+ 2
#include <iostream> #include <string> using namespace std; void PascalsTriangle(int); int main() { int n; cout << "Enter the number of rows you would like to print for Pascal's Triangle: "; cin >> n; cout << endl; PascalsTriangle(n); return 0; } int numdigits(int x) { int count = 0; while(x != 0) { x = x / 10; ++count; } return count; } void PascalsTriangle (int n) { int i, j, x, y, maxlen; string len; for(i = 0; i < n; i++) { x = 1; len = string((n-i-1)*(n/2), ' '); cout << len; for(j = 0; j <= i; j++) { y = x; x = x * (i - j) / (j + 1); maxlen = numdigits(x) - 1; if(n % 2 == 0) cout << y << string(n - 1 - maxlen, ' '); else { cout << y << string(n - 2 - maxlen, ' '); } } cout << endl; } }
6th Nov 2016, 5:40 PM
SANKALP PHADKE
SANKALP PHADKE - avatar