代码搜索:短波差分
找到约 10,000 项符合「短波差分」的源代码
代码结果 10,000
www.eeworm.com/read/318723/13473480
dbf 统计表含照顾分.dbf
www.eeworm.com/read/308157/13707096
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/308157/13707193
c 二分查找1.c
www.eeworm.com/read/484696/6572652
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/484643/6580969
txt 二分法.txt
#include
#include
main()
{
float x0,x1,x2,F0,F1,F2;
coutx1;
coutx2;
F1=2*x1*x1-4*x1*x1+3*x1-6;
F2=2*x2*x2-4*x2*x2+3*x2-6;
while(F1*F2
www.eeworm.com/read/481249/6646418
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/481249/6646515
c 二分查找1.c
www.eeworm.com/read/477013/6744127
vsd 二分法.vsd
www.eeworm.com/read/408884/11366235
c 二分查找(指针法).c
#include
#define N 10
void main()
{
int n,*p,num,k=1;
int a[10]={1,2,3,4,5,6,7,8,9,10};
n=N/2;
printf("请输入要查找的数:");
scanf("%d",&num);
for(p=a+n;k;)
{
if(n==0)k--;
i
www.eeworm.com/read/408884/11366236
c 二分查找(数组法).c
#include
#define N 10
void main()
{
int n,num,k=1,i,a[10]={1,2,3,4,5,6,7,8,9,10};
printf("请输入要找的数:");
scanf("%d",&num);
n=N/2;//谨记!!!不要再犯低级错误!!!
i=n;
while(k)
{
if(n==0)k