Computer Science, asked by ironsohan, 9 months ago

WAP to print all the odd numbers from 1 to 50 in reverse order ​

Answers

Answered by Aryansingh001
2

Answer:

here,s the coad i hve to work hrd so plz

give mr my salery by marking me as a brainliest

Explanation:

public static void main(String[] args){  

for(int x = 0; x <= 50; x++){  

 if(x%2==1){  

  System.out.println(x);  

 }  

}  

}// End naive solution

plz mark me as a brainliest

Similar questions