1.

Rewrite the following code fragment using for loopi=100while(i>0):print(i); -=3​

Answer»

for(INT i=100;i>0;i=i-3){    System.out.println(i);}EXPLANATION:This is for Java...CHEERS if helped.



Discussion

No Comment Found