Stair Case | Hacker Rank Solution in Java 7
Problem:
Consider a staircase of size :
#
##
###
####
Observe that its base and height are both equal to , and the image is drawn using # symbols and spaces. The last line is not preceded by any spaces.
Write a program that prints a staircase of size .
Solution:
import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.regex.*;
public class Solution {
// Complete the staircase function below.
static void staircase(int n) {
for(int i=0;i<n;i++)
{
for(int k=n-1;k>i;k--)
{
System.out.print(" ");
}
for(int j=0;j<=i;j++)
{
System.out.print("#");
}
System.out.println();
}
}
private static final Scanner scanner = new Scanner(System.in);
public static void main(String[] args) {
int n = scanner.nextInt();
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
staircase(n);
scanner.close();
}
}
Comments
Post a Comment