pyramid triangle

Print Double pyramid star pattern in Java

Print Double pyramid star pattern in Java

In this tutorial, we will discuss  the concept of print Double pyramid star pattern in Java

In this post, we will learn how to create double (integrated) pyramid star pattern in Java language.

We can use for loop, while loop or do while loop to display different integrated star patterns.

 

Here, we will use for loop to print different integrated pyramid star patterns in this programs

Program 1

Integrated pyramid star pattern 1

import java.util.Scanner;
class DoublePyramid1{
public static void main (String args[]){

Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Enter the number of rows\n");
int rows=scan.nextInt();//reads rows from user
for(int i=1; i<=rows; i++){    //print upper part
    for(int j=i; j<=rows; j++){
      System.out.print("*"+" ");//print star with space
}
System.out.println();
}

for(int i=rows-1; i>=1; i--){  //print lower part
    for(int j=i; j<=rows; j++){
      System.out.print("*"+" ");//print star with space
}
System.out.println();
        }
    }
}

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

Enter the number of rows
6
* * * * * *
* * * * *
* * * *
* * * 
* * 
*
* * 
* * * 
* * * *
* * * * *
* * * * * *

 

Program 2

Integrated pyramid star pattern 2

import java.util.Scanner;
class DiamondNumber4{
public static void main (String args[]){

Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Enter the number of rows: ");
int rows=scan.nextInt();//reads rows from user

for(int i=1; i<=rows; i++){    //print upper part
    for(int j=1; j<i; j++){
      System.out.print(" ");//print space
}
for(int j=i; j<=rows; j++){
      System.out.print("*");//print star
}
System.out.println();
}

for(int i=rows-1; i>=1; i--){
  for(int j=1; j<i; j++){
      System.out.print(" ");//print space
}

for(int j=i; j<=rows; j++){  //print lower part
      System.out.print("*");//print star
}
System.out.println();
        }
    }
}

 

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

Enter the number ofrows: 6
******
  *****
    ****
      ***
        **
          *
        **
      ***
    ****
  *****
******

 

Program 3

Integrated pyramid star pattern 3

import java.util.Scanner;
class DoublePyramid2{
public static void main (String args[]){

Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Enter the number of rows: ");
int rows=scan.nextInt();//reads rows from user
for(int i=1; i<=rows; i++){    //print upper part
    for(int j=1; j<=i; j++){
      System.out.print(" ");
}
for(int k=i; k<=rows; k++){
      System.out.print("*"+" ");//print star with space
}
System.out.println();
}

for(int i=rows-1; i>=1; i--){  //print lower part
    for(int j=1; j<=i; j++){
      System.out.print(" ");
}
for(int k=i; k<=rows; k++){
      System.out.print("*"+" ");//print star with space
}
System.out.println();
        }
    }
}

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

Enter the number of rows: 6
*   *   *   *   *   *
  *   *   *   *   *
    *   *   *   *
      *   *   *
        *   *
          *
        *   *
      *   *   *
    *   *   *   *
  *   *   *   *   *
*   *   *   *   *   *

 

Program 4

Integrated pyramid star pattern 4

import java.util.Scanner;
class DoublePyramid4{
public static void main (String args[]){

Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Enter the number of rows: ");
int rows=scan.nextInt();//reads rows from user
for(int i=1; i<=rows; i++){    //print upper part
    for(int j=1; j<=rows-i; j++){
      System.out.print(" ");
}
for(int k=1; k<=i; k++){
      System.out.print("*"+" ");//print star with space
}
System.out.println();
}

for(int i=1; i<=rows-1; i++){  //print lower part
    for(int j=1; j<=i; j++){
      System.out.print(" ");
}
for(int k=1; k<=rows-i; k++){
      System.out.print("*"+" ");//print star with space
}
System.out.println();
        }
    }
}

 

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

Enter the number of rows: 6
         *
       *  *
     *  *  *
   *  *  *  *
  *  *  *  * *
*  *  *  *  * *
  *  *  *  *  *
    *  *  *  *
      *  *  * 
        *  *
          *

 

Similar post

 Integrated pyramid star pattern in C

Integrated pyramid star pattern in C++

C++ code to Double pyramid star pattern

Java  code to Double pyramid star pattern

Java program to Display diamond number pattern using while loop

C++  code to Display diamond number pattern using while loop

Floyd’s triangle number pattern using for loop in C

Floyd’s triangle pattern using nested for loop in Java

Floyd’s triangle pattern using nested while loop in Java

Hollow pyramid triangle pattern in C++ language

Pyramid star pattern in Cpp

Pyramid star pattern in C

Pyramid star pattern in Java 

Rhombus pattern in Java using for loop

Rhombus pattern in C using while loop

Rhombus pattern in C++ using do-while loop

Display Pyramid star pattern in C

Display Pyramid star pattern  in Java

Parallelogram and Hollow Parallelogram star pattern in Java

Parallelogram and Hollow Parallelogram star pattern in C Language

C++ program to Display diamond number pattern using while loop

C  program to Display diamond number pattern using while loop

 

Suggested for you

For loop in C++ language

For loop in Java language

For loop in C language

For loop in Python language

while loop in C++ language

while loop in Java language

while loop in C language

while loop in Python language

Nested for loop in Java language

Nested for loop in C++ language

Nested for loop in C language

Nested for loop in Python language

If statements in Java  language

Nested if statements in Java  language

 

Operator in Java language

Data type in Java language

Nested while loop in Java language

Operator in C language

Data type in C  language

variable in C  language

Nested while loop in C language

input-output function in C

Class and main method in Java language

 

 

 

 

Program to Double pyramid star pattern in C++
C code to print Double pyramid star pattern
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

How to find reverse number using method in Java

How to find reverse number using method In this article, we will discuss the concept…

1 day ago

C# inverted full pyramid star pattern

C# inverted full pyramid star pattern In this article, we will discuss the concept of…

3 weeks ago

C# Full Pyramid star pattern program

C# Full Pyramid star pattern program In this article, we will discuss the concept of…

1 month ago

Program to count vowels,consonants,words, characters and space in Java

Program to count vowels, consonants, words, characters and space in Java In this article, we…

1 month ago

How to print multiplication table using Array in C++ language

How to print multiplication table using Array in C++ language In this post, we will…

1 month ago

C Program to multiplication table using Array

C Program to multiplication table using Array In this tutorial , we will discuss about…

2 months ago