代码搜索:短波差分
找到约 10,000 项符合「短波差分」的源代码
代码结果 10,000
www.eeworm.com/read/284848/8887537
doc 住房情况分户普查管理.doc
www.eeworm.com/read/383930/8910673
txt 计算百分比.txt
private static String getRate(int success,int count){
String rate="0.00%";
if(count!=0){
rate=(double)success/count+"";
if(success/count>=1){
www.eeworm.com/read/427944/8911297
doc 分检搬运机器人.doc
www.eeworm.com/read/376627/9311547
c 二分查找2.c
#include "stdio.h"
typedef struct
{
char *elem;
int length;
}sstable;
void create(char **t)
{
int i;
static char a[11];
*t=a;
for(i=1;i
www.eeworm.com/read/376627/9311853
c 二分查找1.c
www.eeworm.com/read/179840/9335392
cpp 二分法.cpp
#include
#include
#define EPS 5e-6 //根容许的误差
#define DELTA 1e-6 //|f(x)|容许的误差
float Bisection( float a,float b,float (*f)(float) )
{
float c,fc,fa=f(a),fb=f(b);
int n=1;
www.eeworm.com/read/375927/9342054
cpp 二分法.cpp
2、二分法
#include
#include
float f(float x)
{float y;
y=x*x+2*x+1;
return y;}
main()
{float a,b,c,x;
printf("%s","input three numbers:\n");
scanf("%f%f%f",&a,&b,&c);
while(fabs(b-a)>=c)
{x=(a
www.eeworm.com/read/373187/9470288
ms9 1000分频.ms9
www.eeworm.com/read/373187/9470456