Discuss / Python / 作业

作业

Topic source

weiqing1230

#1 Created at ... [Delete] [Delete and Lock User]

>>> def m(n,a,b,c):

...   if n==1:

...     print(a,'-->',c)

...   else:

...     m(n-1,a,c,b)

...     print(a,'-->',c)

...     m(n-1,b,a,c)


  • 1

Reply