Computer Science, asked by abhinabkashyap14, 9 months ago

Q6. Find the output. Also show the working
for(int i=1;i<=3;i++)
{
for(int j=5;j>=3;j-=2)
{
System.out.print(i+j+" ");
}
}​

Answers

Answered by mv0673075
0

Answer:

15 13 25 23 35 33 may be the answer.

Similar questions