Today's computer science question let's see who is the actual brainliest to answer this wrong answers will worstly be reported so think before you answer it
your question is the following pattern given in the following picture in the Java program
Your time starts now
Attachments:
Answers
Answered by
0
class prog
{
void main()
{
int i,j;
for (i=5; i>=1; i--)
{
for(j=5; j>=i; j--)
{
System.out.print(j+" ");
}
System.out.println();
}
}
}
Similar questions