Update stairs_pattern.cpp

This commit is contained in:
faizan Ahamed 2020-04-19 20:39:06 +05:30 committed by GitHub
parent 2b01decae1
commit 9ac7981fed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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