代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/240529/4573017
java testcomplex.java
package com.javapatterns.immutable.complex;
public class TestComplex
{
public static void main(String[] args)
{
Complex c1 = new Complex(10,20);
Complex c2 = new Comp
www.eeworm.com/read/318815/3562606
java testcomplex.java
package com.javapatterns.immutable.complex;
public class TestComplex
{
public static void main(String[] args)
{
Complex c1 = new Complex(10,20);
Complex c2 = new Comp
www.eeworm.com/read/314938/3628341
java testcomplex.java
package com.javapatterns.immutable.complex;
public class TestComplex
{
public static void main(String[] args)
{
Complex c1 = new Complex(10,20);
Complex c2 = new Comp
www.eeworm.com/read/286814/4032653
cpp c_8_1.cpp
#include "stdafx.h"
#include
#include
using namespace std;
class complex {
friend complex operator + (const complex& number1, const complex& number2);
friend c
www.eeworm.com/read/397826/2399737
java testcomplex.java
package com.javapatterns.immutable.complex;
public class TestComplex
{
public static void main(String[] args)
{
Complex c1 = new Complex(10,20);
Complex c2 = new Comp
www.eeworm.com/read/392558/2494667
java testcomplex.java
package com.javapatterns.immutable.complex;
public class TestComplex
{
public static void main(String[] args)
{
Complex c1 = new Complex(10,20);
Complex c2 = new Comp
www.eeworm.com/read/377738/2697227
cpp pex6_6.cpp
#include
#pragma hdrstop
#include "wex6_9.h"
// evaluate the complex function z**3 -3z*z + 4z - 2
Complex f(Complex z)
{
return z*z*z - Complex(3.0)*z*z + Complex(4.0)*z - 2.0
www.eeworm.com/read/37180/899775
cpp xt10-6.cpp
#include
using namespace std;
class Complex
{public:
Complex(){real=0;imag=0;}
Complex(double r){real=r;imag=0;}
Complex(double r,double i){real=r;imag=i;}
operator doub
www.eeworm.com/read/37180/899963
cpp c10-10.cpp
#include
using namespace std;
class Complex
{public:
Complex(){real=0;imag=0;}
Complex(double r){real=r;imag=0;}
Complex(double r,double i){real=r;imag=i;}
friend Comple
www.eeworm.com/read/37180/899973
cpp c10-10-2.cpp
#include
using namespace std;
class Complex
{public:
Complex(){real=0;imag=0;}
Complex(double r){real=r;imag=0;}
Complex(double r,double i){real=r;imag=i;}
operator doub