Computer Science, asked by shyna1872046, 1 month ago

Write a program to print the numbers from 20 to 50 skipping 3 steps in decreasing order​

Answers

Answered by ankitadasb80
1

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

Similar questions