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
0
Answer:
for(int i=30;i>=0;i=i-5)
{
System.out.println(i);
}
Similar questions