Computer Science, asked by anshkatiyar20135dpsk, 3 months ago

write the output of the following code n=10 while n<5 print (n+n) n+=10 print ("Program Done")​

Answers

Answered by Anonymous
3

Answer:

hello,

Explanation:

for the code below :

n=10

while n<5:

   print(n+n)

   n+=10

   print("program done")

there would not be any output....

___________________________________________________

but for this code:

n=10

while n<5:

   print(n+n)

   n+=10

print("program done")

the output will be:

program done

_____________________________________________________

hope it helps you

please mark brainliest

@ItzSnowySecret07

Answered by hv4595300
1

hello

Explanation:

for the code below

n=10

while <5 :

print (n+n)

Similar questions