代码搜索:外差式

找到约 10,000 项符合「外差式」的源代码

代码结果 10,000
www.eeworm.com/read/353119/10470691

dsw 构造正交多项式.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ###############################################################################
www.eeworm.com/read/352992/10485245

plg 构造正交多项式.plg

Build Log --------------------Configuration: 构造正交多项式 - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~1\董巍\LO
www.eeworm.com/read/352992/10485252

cpp 构造正交多项式.cpp

// 构造正交多项式.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "iostream.h" #include "math.h" double f(double x) //求函数值 { return x; } double sum(
www.eeworm.com/read/352992/10485258

dsp 构造正交多项式.dsp

# Microsoft Developer Studio Project File - Name="构造正交多项式" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) C
www.eeworm.com/read/352992/10485265

dsw 构造正交多项式.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ###############################################################################
www.eeworm.com/read/278425/10536336

plg 多项式计算器.plg

Build Log --------------------Configuration: 多项式计算器 - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~1\LQ\LOC
www.eeworm.com/read/278425/10536339

dsp 多项式计算器.dsp

# Microsoft Developer Studio Project File - Name="多项式计算器" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Co
www.eeworm.com/read/278425/10536343

cpp 多项式计算器.cpp

#include #include typedef struct Ployn{//构造一个结构体,每个结点里存放多项式一项的系数,指数和next指针. float coef;//系数 int expn;//指数 struct Ployn *next; }term,*LinkList; LinkList CreatPloyn(int