WAP for the pattern in Java..............!!!!!
Attachments:
Answers
Answered by
5
hope it helps!
#sumedhian ❤❤
Attachments:
Answered by
6
Answer :
public static void pyramidPattern(int n)
{
for (int i=0; i<n; i++) //outer loop for number of rows(n) { for (int j=n-i; j>1; j--) //inner loop for spaces
{
System.out.print(" "); //print space
}
for (int j=0; j<=i; j++ ) //inner loop for number of columns
{
System.out.print("* "); //print star
}
System.out.println(); //ending line after each row
}
}
public static void main(String args[]) //driver function
{
int n = 5;
pyramidPattern(n);
}
}
Similar questions
English,
4 months ago
Biology,
9 months ago
English,
9 months ago
Computer Science,
1 year ago
Computer Science,
1 year ago