Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Pascals Triangle
//clang 3.8.0 #include <iostream> using namespace std; int main() { int rows, coef = 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) coef = 1; else coef = coef*(i-j+1)/j; cout << coef << " "; } cout << endl; } return 0; }
run
|
edit
|
history
|
help
0
C++ Standard Template Library
How to test call member?
(non?)-template template parameters for container stream insertion
Calculate H.C.F using recursion
Own initialization
Argument passing by using reference and value
Member inheritance
selection sort
Throttle Example in C++
wellformed number