Computer Science, asked by KaranAulakh3414, 9 months ago

Write a program to print your name five times using do while loop

Answers

Answered by overthetopofyourhead
5

Answer:

OK

Explanation:

name=ankesh

i=1

while i>=5:

print(name)

i=i+1

#So simple buddy!!!! more queries, just revert me on [email protected] . I can tell your every answer related to this Python programming

Answered by rameshguptarkg771
0

Answer:

main()

{

   int i=0;

   do

   {

       printf("Ramesh Gupta   **  ");

       i++;

   }

   while(i<=4);

   getch();

}

Explanation:

variable initlization i=0;

start do while loop

write name

do while loop first print statement execute and then after check condition  

Similar questions