DEV Community

Cover image for Staircase Problem solution hacker rank
Anin Arafath
Anin Arafath

Posted on

Staircase Problem solution hacker rank

Staircase detail
This is a staircase of size n =4

.....#
....##
...###
.####

Its base and height are both equal to n . It is drawn using # symbols and spaces. The last line is not preceded by any spaces.
Write a program that prints a staircase of size n.

Function Description

Complete the staircase function in the editor below.
staircase has the following parameter(s):

int n: an integer

Print

Print a staircase as described above.

Input Format

A single integer, , denoting the size of the staircase.

Output Format

Print a staircase of size using # symbols and spaces.

Note: The last line must have spaces in it.

#include <iostream> using namespace std; int main() { int n ; cin >>n; for (int i = 1; i <= n; i++) { for (int j = 0; j < n - i; j++) { cout << " "; } for (int k = 0; k < i; k++) { cout << "#"; } cout << endl; } return 0; } 
Enter fullscreen mode Exit fullscreen mode

Top comments (0)