1.

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

Answer»

ANSWER:

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

{

System.out.println(i);

}



Discussion

No Comment Found