Computer Science, asked by roshansiva2003, 3 months ago

9. Find the errors in the following code and write the code and underline each
correction:
30 =
frk in range(0,t)
Ek %4=0
print (k * 4)
Else:
print(k ++4)​

Answers

Answered by nkcthereaper
0

Answer:

t=30

for k in range(0,t):

   if k%4==0:

       print(k*4)

   else:

       print(k+4)

Explanation:

Similar questions