代码搜索:complex

找到约 10,000 项符合「complex」的源代码

代码结果 10,000
www.eeworm.com/read/112070/15493910

h complex.h

// Complex.h: interface for the Complex class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_COMPLEX_H__EFFC2607_6B0E_49CB_BF0F_8662391522CA__INCLUDED
www.eeworm.com/read/111740/15504438

java complex.java

public class Complex { private double m_real; private double m_image; Complex(double real,double image) { m_real=real; m_image=image; } public double getReal() { return m_real;
www.eeworm.com/read/111740/15504442

class complex.class

www.eeworm.com/read/111737/15504456

java complex.java

www.eeworm.com/read/108548/15584362

h complex.h

#if !defined COMPLEX_H #define COMPLEX_H //------------------------------------ // complex.h // Complex number // (c) Reliable Software, 1996 //------------------------------------ #includ
www.eeworm.com/read/108056/15595526

cpp complex.cpp

#include "stdafx.h" struct CComplex { datatype x,y; CComplex() {}; CComplex(datatype sx, datatype sy) {x=sx;y=sy;}; CComplex(const CComplex& cmp) {x=cmp.x; y=cmp.y;}; CComplex operator
www.eeworm.com/read/108056/15595547

h complex.h

www.eeworm.com/read/107831/15599119

cpp complex.cpp

////////////////////////////////////////////////////////////////////// // Complex.h // // 操作复数的类 CComplex 的实现代码 // // 周长发编制, 2002/8 //////////////////////////////////////////////////////////////
www.eeworm.com/read/107831/15599129

h complex.h

////////////////////////////////////////////////////////////////////// // Complex.h // // 操作复数的类 CComplex 的声明接口 // // 周长发编制, 2002/8 //////////////////////////////////////////////////////////////
www.eeworm.com/read/107830/15599141

cpp complex.cpp

////////////////////////////////////////////////////////////////////// // Complex.h // // 操作复数的类 CComplex 的实现代码 // // 周长发编制, 2002/8 //////////////////////////////////////////////////////////////