Computer Science, asked by AryanHelper9773, 9 days ago

Write the proper program to count the number from 10 to 1

Answers

Answered by MuhammedRayan
0

Answer:

This is written in python

Explanation:

number = 10

while number != 0:

   print(number)

   number -= 1

Similar questions