下列程序的输出结果为: def f(a,b): a=4 return a+b def main(): a=5 b=6 print(f(a,b),a+b) main()
A.10 11 B.11 11 C.10 10 D.11 10
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。