Write a java program to display the following pattern using loop: # #* #*# #*#* #*#*#
Answers
Answered by
0
all is well with me so sub
Answered by
2
. Sandglass Star Pattern
import java.util.Scanner;
public class SandglassPattern
{
public static void main(String[] args)
{
int i, j, k, n;m
Scanner sc = new Scanner(System.in);
System.out.print("Enter the number of rows you want to print: ");
Similar questions