Computer Science, asked by 21926, 3 months ago

Write a for loop to print the numbers 88, 84, 80, ...44 on one line.

Expected Output
88 84 80 76 72 68 64 60 56 52 48 44

what is the code

Answers

Answered by anindyaadhikari13
1

Question:-

  • Write a for loop to print the numbers 88 to 44 in one line.

Program:-

This is written in Python.

for i in range(88,43,-4):

print(i, end=" ")

Similar questions