代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/439595/7705351
obj complex.obj
www.eeworm.com/read/439595/7705354
h complex.h
#ifndef COMPLEX
#define COMPLEX
#include
class Complex {
double re, im;
public:
Complex():re(0),im(0){}
Complex(double r):re(r),im(0){}
Complex(double x, double y):re(
www.eeworm.com/read/439490/7707625
c complex.c
/* Cau truc va cac ham thao tac len so phuc */
#include
typedef struct tagcomplex {
float thuc, ao;
} complex;
complex tong(complex a, complex b)
{
complex c;
c.thuc = a.thu
www.eeworm.com/read/435334/7793302
java complex.java
package lexer;
public class Complex extends Token {
public final float rValue;
public final float iValue;
public Complex(float r, float i) { super(Tag.COMPLEX); rValue = r; iValue = i; }
pu
www.eeworm.com/read/435334/7793313
class complex.class
www.eeworm.com/read/199277/7870512
lhs complex.lhs
\begin{code}
module Complex ( get_cmp_part, cmp, loop_complex, sqr_complex, for_complex ) where
import StepGen
\end{code}
\begin{code}
get_cmp_part num = ("cmp")|?| ("imag("
www.eeworm.com/read/299153/7884533
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/298961/7918725
cpp complex.cpp
// Complex.cpp: implementation of the Complex class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Complex.h"
#include
www.eeworm.com/read/298961/7918738
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/198037/7955787
h complex.h
//自定义复数类的头文件(Complex.h)
#ifndef __COMPLEX_H
#define __COMPLEX_H
#include
#include
using namespace std;
class Divbyzero{};
class Complex; //前向引用声明
//函数原型声明
istr