Computer Science, asked by simoneghosh2008, 6 months ago

Draw a flowchart to display odd numbers between 200 and 300 in reverse order.

Answers

Answered by samarthkrv
1

Answer:

public class Main

{

public static void main(String[] args) {

    for(int i = 300; i >= 200; i--){

        if(i%2 == 1){

            System.out.print(i + " ");

        }

    }

}

}

Explanation:

Similar questions