Floyd's triangle

Java code to Floyd’s triangle star pattern

Java code to triangle star pattern

In this tutorial, we will discuss Java code to Floyd’s triangle star pattern using nested for loop.

We will learn how to create Floyd’s triangle pattern in Java programming language using for loop

Pattern 1

Floyd’s triangle pattern 1

Code for Floyd’s triangle program 1

Java program to display the right triangle star pattern

import java.util.Scanner;
public class JavaStarPattern{
public static void main(String args[]){
Scanner sc=new Scanner(System.in);
System.out.print("Enter the number of rows: ");
int rows=sc.nextInt();//get input from user
for(int i=0; i<=rows; i++){
  for(int j=0; j<=i; j++){
     System.out.print("*");//print star
}
System.out.println();
}
}
}

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

Enter the number of rows: 9
*
**
***
****
*****
******
*******
********
*********
**********

 

Pattern 2

Floyd’s triangle pattern 2

Code for Floyd’s triangle program 2

Java program to display mirrored right triangle star pattern

import java.util.Scanner;
public class JavaStarPattern{
public static void main(String args[]){
Scanner sc=new Scanner(System.in);
System.out.print("Enter the number of rows: ");
int rows=sc.nextInt();
for(int i=1; i<=rows; i++){//parent for loop for print rows
  for(int j=1; j<=rows-i; j++){
     System.out.print(" ");//print space
}
for(int k=1; k<=i; k++){
     System.out.print("*");//print star
}
System.out.println();//move to next line
}
}
}

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

Enter the number of rows: 9
                *
              **  
            ***
          ****
        *****
      ******
    *******
  ********
*********

 

Pattern 3

Floyd’s triangle pattern 3

Code for Floyd’s triangle program 3

Java program to display reverse right triangle star pattern

import java.util.Scanner;
public class JavaStarPattern{
public static void main(String args[]){
Scanner sc=new Scanner(System.in);
System.out.print("Enter the number of rows\n: ");
int rows=sc.nextInt();//get input from user
for(int i=rows; i>=1; i--){
  for(int j=1; j<=i; j++){
     System.out.print("*");  /print star
}
System.out.println();
}
}
}

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

Enter the number of rows: 9

*********
********
*******
******
*****
****
***
**
*

 

Pattern 4

Floyd’s triangle pattern 4

Code for Floyd’s triangle program 4

Program to display reverse mirrored right triangle star pattern

import java.util.Scanner;
public class JavaStarPattern{
public static void main(String args[]){
Scanner sc=new Scanner(System.in);
System.out.print("Enter the number of rows: ");
int rows=sc.nextInt();
for(int i=1; i<=rows; i++){//parent for loop lterate rows
  for(int j=1; j<=i; j++){
     System.out.print(" ");//print space
}
for(int k=i; k<=rows; k++){
     System.out.print("*");//print star
}
System.out.println();//move to next line
}
}
}

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

Enter te number of rows: 9
*********
  ********
    *******
      ******
        *****
          ****
            ***
              **
                *

 

Suggested for you

For loop in C++ language

For loop in Java language

For loop in C language

For 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

Floyd’s triangle number pattern using for loop in C

 

C program to Floyd's triangle star pattern
Java code to hollow triangle 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

PHP Star Triangle pattern program

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

1 month 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