Write an algorithm to print your name 10 times
Answers
Answered by
1
Answer:
in python
Explanation:
for i in range(10):
print("Your Name")
Similar questions