pyramid triangle

Hollow Pyramid Pattern in Java using nested while

Hollow Pyramid Pattern in Java using nested while

In this tutorial, we will discuss Hollow Pyramid Pattern in Java using nested while loop

In this program, we are going to learn about how to display  Pyramid Pattern in Java using nested while loop in Java programming language

Here, we display an Hollow Pyramid Pattern program with coding using nested while loop and also program get input from the user using Scanner class function in Java  language

The user can provide numbers as they wish and get the  Hollow pyramid pattern according to their input.

Hollow Pyuramid Triangle Pattern 1

Program 1

Hollow Pyramid triangle star pattern

import java.util.Scanner;//import the scanner class 
class Pyramid_WhileH1{ 
public static void main(String args[]){ 
Scanner scan=new Scanner(System.in);
//create a scanner object 
System.out.print("Enter the number of rows"); 
int rows=scan.nextInt();

int i,j,k;
    i=1;
    while(i<=rows){
        j=i;
        while(j<rows){
        System.out.print(" ");
        j++;
    }

    k=1;
while(k<2*i){
    if(i==rows || (k==1 || k==2*i-1))
        System.out.print("*");
    else
        System.out.print(" ");
    k++;
}
i++;
System.out.print("\n");//Move to the next line for print
    }
}
}

When the above code is executed, it produces the following results

Hollow Pyramid Pattern in Java

 

Hollow Pyuramid Triangle Pattern 2

Program 2

Inverted Hollow Pyramid triangle star pattern

import java.util.Scanner;//import the scanner class 
class Pyramid_WhileH{ 
public static void main(String args[]){ 
Scanner scan=new Scanner(System.in);
//create a scanner object 
System.out.print("Enter the number of rows"); 
int rows=scan.nextInt();

int i,j,k;
    i=rows;
    while(i>=1){
        j=rows;
        while(j>i){
        System.out.print(" ");
        j--;
    }

    k=1;
while(k<2*i){
    if(i==rows || (k==1 || k==2*i-1))
        System.out.print("*");
    else
        System.out.print(" ");
    k++;
}
i--;
System.out.print("\n");//Move to the next line for print
    }
}
}

When the above code is executed, it produces the following results

inverted Hollow Pyramid Pattern

 

Suggested for you

Operator in Java language

While loop in Java language

Nested while loop in Java language

Data type in Java language

 

Similar post

Java program to print combined Pyramid pattern

C program to print combined Pyramid pattern

C++ program to print combined Pyramid pattern

Java Program to pyramid star Pattern

C Program to pyramid star Pattern

C++ Program to pyramid star Pattern

Hollow Triangle star Pattern using while loop in Java
Hollow Pyramid Pattern in Cpp using nested while loop
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

PHP Star Triangle pattern program

PHP Star Triangle pattern program In this tutorial, we will discuss about PHP Star Triangle…

2 months ago

PHP Full Pyramid pattern program

PHP Full Pyramid pattern program In this tutorial, we will discuss about PHP Full Pyramid…

2 months ago

5 methods to add two numbers in Java

5 methods to add two numbers in Java In this tutorial, we will discuss the…

2 months ago

Python Full Pyramid star pattern program

Python full Pyramid star pattern program In this tutorial, we will discuss  the concept of…

5 months ago

Write a function or method to convert C into F -Entered by user

Write a function or method to convert C into F -Entered by the user In…

10 months ago

How to write a function or method to convert Celsius into Fahrenheit

How to write a function or method to convert Celsius into Fahrenheit In this tutorial,…

10 months ago