write a java program to display the following pattern:
*#*#*
*#*#
*#*
*#
*
please answer only if you know how to program in java....thanks
Answers
Answered by
1
Answer:
import java.util.Scanner;
public class Edureka
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
System.out.println("Enter the number of rows: ");
int rows = sc.nextInt();
for (int i= 0; i<= rows-1 ; i++)
{
for (int j=0; j<=i; j++)
{
System.out.print(" ");
}
for (int k=0; k<=rows-1-i; k++)
{
System.out.print("*" + " ");
}
System.out.println();
}
sc.close();
}
}
i hope it will help u
Answered by
1
Answer:
sorry I didn't know the answer of the question sorry
Similar questions