代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/488568/6489753
h complex.h
#ifndef COMPLEX_H
#define COMPLEX_H
#include
using std::ostream;
class Complex {
public:
Complex();
Complex(double X);
Complex(double X, double Y);
Complex(Complex const
www.eeworm.com/read/486925/6521008
java complex.java
package com.javapatterns.immutable.complex;
final public class Complex extends Number
implements java.io.Serializable, Cloneable, Comparable
{
static final public Complex i = new Complex(0.0,
www.eeworm.com/read/483942/6597851
cpp complex.cpp
// This is the implementation file for the Complex class
#include
#include
#include "complex.h"
using namespace std;
///////////////////////////////
// Definitions of operation
www.eeworm.com/read/483942/6597854
h complex.h
// This is the header file for the Complex class. The
// implementation is in a separate file.
// Any code that uses the Complex class must include this
// file, using the preprocessor directive
//
www.eeworm.com/read/483942/6597865
cpp complex.cpp
#include
#include
using namespace std;
// Declaration of Complex class, for working with complex
// numbers as easily as with doubles
class Complex {
public:
// Constructors
C
www.eeworm.com/read/483067/6609257
h complex.h
/* complex.h
Complex Number Library - Include File
class complex: declarations for complex numbers.
Copyright (c) Borland International 1990,1991
All Rights Reserved.
All f
www.eeworm.com/read/481504/6641962
cpp complex.cpp
#include "stdafx.h"
ComplexNumber ComplexMultiply(ComplexNumber x, ComplexNumber y)
//
// Copyright 2002 The Mobile and Portable Radio Research Group
//
{
ComplexNumber Result;
Result.rea
www.eeworm.com/read/481504/6641979
h complex.h
//
// Copyright 2002 The Mobiel and Portable Radio Research Group
//
typedef class ComplexNumbertag
{
public:
double real;
double imaginary;
} ComplexNumber;
ComplexNumber ComplexMult
www.eeworm.com/read/480626/6667163
sln complex.sln
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Complex", "Complex\Complex.vcproj", "{5FBEBF12-8CC7-4F97-BA8D
www.eeworm.com/read/480626/6667164