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
5
Answer:
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
Science,
5 months ago
Chemistry,
5 months ago
Math,
10 months ago
Environmental Sciences,
10 months ago