Computer Science, asked by parardhadhar2005, 6 months ago

lets see is actual brainliest to answer this question writing wrong answer will result very reporting think before you give it
print this pattern in java
your time starts now......

Attachments:

Answers

Answered by SpaceWalker17
5

Answer:

\huge\underline\mathfrak\pink{JAVA\:PROGRAM}

public class NumberPattern {

public static void main(String[] args) {

int i = 5;

while (i >= 1) {

int j = 5;

while (j >= i) {

System.out.print(j);

j--;

}

i--;

System.out.println();

}

}

}

Hope this answer will help you !!❤✌

Similar questions