摘要: 问题描述:使用C#调用下面的带参数的用python写的方法,并且想要获取返回值。 def Quadratic_Equations(a,b,c): D=b**2-4*a*c ans=[] ans.append((-b+math.sqrt(D))/(2*a)) ans.append((-b-math.s 阅读全文
posted @ 2019-12-01 12:09 南风小斯 阅读(1003) 评论(0) 推荐(0)