Computer Science, asked by hridayghelani8071, 7 months ago

How to write a Java program for the pattern 1 3 5 3 5 7 5 7 9 7 9 11 9 11 13

Answers

Answered by samuelshine1120
1

Answer:

The Loop:

for(int i=1; i<=9; i++)

{

System.out.println(i);

System.out.println(i+2);

System.out.println(i+4);

i++;

}

Explanation:

Answered by mgkhan8888
5

hope this helped you

please don't forget to follow me and like

please give me a brainliest answer

Attachments:
Similar questions