Computer Science, asked by vinaypoineer, 6 months ago

Write a program to print the following series
30, 25, 20, 15, 10, 5
tell fast and don't write nonsense if don't know​

Answers

Answered by sudheer7732
0

Answer:

for(int i=30;i>=0;i=i-5)

{

System.out.println(i);

}

Similar questions