Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

/* * C++ Program to Print Pascal's Triangle */ #include using namespace std; int main() { int rows; cout < < Enter the number of

/* * C++ Program to Print Pascal's Triangle */  #include using namespace std;  int main() { int rows; cout << "Enter the number of rows : "; cin >> rows; cout << endl;  for (int i = 0; i < rows; i++) { int val = 1; for (int j = 1; j < (rows - i); j++) { cout << " "; } for (int k = 0; k <= i; k++) { cout << " " << val; val = val * (i - k) / (k + 1); } cout << endl << endl; } cout << endl; return 0; } $ g++ main.cpp $ ./a.out Enter the number of rows : 5  1  1 1  1 2 1  1 3 3 1  1 4 6 4 1 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions