Computer Science, asked by Anonymous, 5 months ago

WAP in BlueJ to print the following pattern.

Attachments:

Answers

Answered by BrainlyProgrammer
1

Answer:

for (I=1;I<=9;I+=2)

{

for(j=I;j<=I;j-=2)

{

System.out.print(j);

}

System.out.println();

}

MARK ME BRAINLIEST....

Similar questions