Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "stdafx.h"
- #include <iostream>
- using namespace std;
- int main()
- {
- int rows, k = 1;
- cout << "Enter number of rows: ";
- cin >> rows;
- for (int i = 0; i < rows; i++)
- {
- for (int space = 1; space <= rows - i; space++)
- cout << " ";
- for (int j = 0; j <= i; j++)
- {
- if (j == 0 || i == 0)
- k = 1;
- else
- k= k*(i - j + 1) / j;
- cout << k << " ";
- }
- cout << endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement