Computer Science, asked by susmitabakuli1981, 1 month ago

write an algorithm to print your name 10 times​

Answers

Answered by KomalSky
3

Answer:

How to print your name ten times [solved]

Declare your variable before the loop.

Set the loop using the letter “i” instead of your variable. ...

Set the “start” part to i = 0, since we want the loop to begin from the very first time that the variable is printed.

Set the “stop” part to i <= 10, since we want it to stop at the tenth repetition.

Explanation:

☺️✌️

Similar questions