InterviewSolution
Saved Bookmarks
| 1. |
Write a program to print the numbers from 20 to 50 skipping 3 steps in decreasing order |
| Answer» CLASS ab{ public void main() { INT i; for( i= 50;i>=20; i=i-3) { System.out.println(" "+ i); } }}mark me brainliest as its the 100% correct ANSWER | |