Write a program to print the numbers from 20 to 50 skipping 3 steps in decreasing order
Answers
Answered by
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