Draw a flowchart to display odd numbers between 200 and 300 in reverse order.
Answers
Answered by
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
Math,
3 months ago
Math,
3 months ago
Social Sciences,
3 months ago
Math,
10 months ago
Social Sciences,
10 months ago