题解 2099: 重载练习之复数加减法

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

python重载练习之复数加减法

摘要:解题思路:注意事项:参考代码:class Complex:     def __init__(self, real1, imag1, real2, imag2, op):         self……

python重载练习之复数加减法

摘要:解题思路:注意事项:参考代码:class Complex:    def __init__(self,real=0,imag=0):        self.real=real        self……