function print (n)
if n>1:
print (n/2)
print (n/2)
for i=1 to n
print line ("print me")
How many times the above function prints "print me”?
Answers
Answered by
0
Answer:
answers is
Explanation:
there are only 3 line that can print here
Similar questions