Floyd's triangle star pattern in java code example
Example: Floyd's triangle star pattern in java
import java.util.Scanner;
public class FloydTriangleStars
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
System.out.println("Enter the number of rows of floyd's triangle you want to print: ");
int rows = sc.nextInt();
System.out.println("Printing floyd's triangle with stars in java");
for(int a = 1; a <= rows; a++)
{
for(int b = 1; b <= a; b++)
{
System.out.print("* ");
}
System.out.println();
}
sc.close();
}
}