代码搜索:float

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

代码结果 10,000
www.eeworm.com/read/166678/10008549

h halfline.h

/* * Copyright 2002-2004, Mersad Team, Allame Helli High School (NODET). * * This program is free software, you can redistribute it and/or modify * it under the terms of the GNU General Public
www.eeworm.com/read/166678/10008622

h body.h

/* * Copyright 2002-2004, Mersad Team, Allame Helli High School (NODET). * * This program is free software, you can redistribute it and/or modify * it under the terms of the GNU General Public
www.eeworm.com/read/362198/10013200

txt 新建 文本文档 (8).txt

17、本程序演示求1+2!+3!+...+20!的和 [程序分析]    此程序只是把累加变成了累乘。 [源程序] main() { float n,s=0,t=1; for(n=1;n
www.eeworm.com/read/166306/10024689

c jm98b.c

/* 98年全国大学生数学建模竞赛B题"水灾巡视问题"模拟退火算法。 这是一个推销员问题,本题有53个点,所有可能性大约为exp(53),目前没有好方法求出精确解,既然求不出精确解,我们使用模拟退火法求出一个较优解,将所有结点编号为1到53,1到53的排列就是系统的结构,结构的变化规则是:从1到53的排列中随机选取一个子排列,将其反转或将其移至另一处,能量E自然是路径总长度。具体算法描述如下: ...
www.eeworm.com/read/166293/10024918

h mappath.h

////////////////////////////////////////////////////////////////////// // MuRoS - Multi Robot Simulator // // Luiz Chaimowicz // GRASP Lab. University of Pennsylvania // VERLab - DCC - UFMG - Bra
www.eeworm.com/read/165829/10050410

c initnet.c

/************************************************************************** ************************************************************************** *** *** *** INITNET.C *** *
www.eeworm.com/read/361464/10050807

html instructions2.doc21.html

VM Spec Contents |
www.eeworm.com/read/361464/10050867

html instructions2.doc59.html

VM Spec Contents |
www.eeworm.com/read/165589/10056690

cpp fjdon.cpp

#include "iostream.h" using namespace std; void main() { float **a,x,result; int n; float k,b; void smallest(float **a,int n,float *k,float *b); coutn; a=new float *
www.eeworm.com/read/165501/10059053

c npmul.c

#include #include /* 下面的两个数组可以根据具体要求解的多项式来决定其值*/ static double p[6]={4,-6,3,1,-1,5}; /*表示多项式4x^5 - 6x^4 + 3x^3 + x^2 - x + 5 */ static double q[4]={3,2,-5,1}; /*表示多项式3x^3 + 2x^