WAP in BlueJ to print the following pattern.
Attachments:
Answers
Answered by
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