Files
thealgorithms--c-plus-plus/others/stairs_pattern.cpp
T
wehub-resource-sync 29cfe479ab
Awesome CI Workflow / Code Formatter (push) Waiting to run
Awesome CI Workflow / Compile checks (macOS-latest) (push) Blocked by required conditions
Awesome CI Workflow / Compile checks (ubuntu-latest) (push) Blocked by required conditions
Awesome CI Workflow / Compile checks (windows-latest) (push) Blocked by required conditions
chore: import upstream snapshot with attribution
2026-07-13 12:37:28 +08:00

36 lines
725 B
C++

/**
* @file
@brief This program is use to print the following pattern<pre>
\*\*
\*\*
\*\*\*\*
\*\*\*\*
\*\*\*\*\*\*
\*\*\*\*\*\*
\*\*\*\*\*\*\*\*
********</pre>
where number of pairs line is given by user
*/
#include <iostream>
/** main function */
int main() {
int l, st = 2, x, r, z, n, sp;
std::cout << "Enter number of pair - ";
std::cin >> x;
z = x;
for (r = 1; r <= x; r++) {
z = z - 1;
for (n = 1; n <= 2; n++) {
for (sp = 1; sp <= z; sp++) {
std::cout << " ";
}
for (l = 1; l <= st; l++) {
std::cout << "\\*";
}
std::cout << std::endl;
}
st = st + 2;
}
}