代码搜索:float

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

代码结果 10,000
www.eeworm.com/read/459928/7262305

c q2fl_t.c

//***************************************************************************** // Filename: recip_t.c // Version: 0.01 // Description: test for reciprocal of Q15 number //*******************
www.eeworm.com/read/459849/7264084

cpp and.cpp

#include #include #include typedef struct sample { float a; float b; } SAMPLE; void main() { SAMPLE w={0.058,0.065}; SAMPLE x[4]={{0,0},{0,1},{1,0},{1,
www.eeworm.com/read/459849/7264086

cpp kmean.cpp

#include #include typedef struct sample { float x; float y; } SAMPLE; float distance(SAMPLE a,SAMPLE b) { float d; float a1=a.x, a2=a.y; float b1=b.x, b2=b.y;
www.eeworm.com/read/459849/7264087

cpp isodata.cpp

#include #include typedef struct sample { float x; float y; } SAMPLE; float distance(SAMPLE a,SAMPLE b) { float d; float a1=a.x, a2=a.y; float b1=b.x, b2=b.y; d=
www.eeworm.com/read/459717/7266559

cpp 2-12.cpp

#include #include #include int max(int *p,int n) { int i=0; int max_i=p[i]; for(i=0;i
www.eeworm.com/read/458094/7313340

cpp fcmadlg.cpp

// FCMADlg.cpp : implementation file // #include "stdafx.h" #include "FCMA.h" #include "FCMADlg.h" #include "stdlib.h" //rand() requie #include "math.h" #include "windowsx.h" #ifdef _D
www.eeworm.com/read/457946/7315150

cpp 412 pi.cpp

#include #include #include using namespace std; int gcd(int a,int b) { int x,z; if(b==0) return a; x=a%b; z=gcd(b,x); return z; } i
www.eeworm.com/read/457902/7315621

c rhodium.c

/* rhodium.c -- your weight in rhodium */ #include int main(void) { float weight; /* user weight */ float value; /* rhodium equivalent */ printf("A
www.eeworm.com/read/457839/7317153

readme_api

////////////////////////////////////////////////////////////////////////////////// //metrics api ////////////////////////////////////////////////////////////////////////////////// /*******************
www.eeworm.com/read/457839/7317175

c tt.c

#include #include void tt() { int x=30; float y=0; y=sin(x); }