Computer Science, asked by ybroranaway69, 3 days ago

Program to print the following pattern
5 5 5 5 5
4 4 4 4 4
3 3 3 3 3
2 2 2 2 2
1 1 1 1 1

Answers

Answered by Disha094
1

public class KboatPattern { public void displayPattern() { for (int i = 0; i < 5; i++) { for (int j = i; j > 0; j--) { System.out.print(" "); } for (int k = 5 - i; k > 0; k--) { System.out.print((5 - i) + " "); } System.out.println(); }

Answered by vaibhav123422
0

Answer:

Questions and answers

KnowledgeBoat

Question

Write a program in Java to display the following pattern: 5 5 5 5 5 4 4 4 4 3 3 3 2 2 1

Answer · 1 vote

public class KboatPattern { public void displayPattern() { for

Similar questions