代码搜索:float

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

代码结果 10,000
www.eeworm.com/read/377037/9297006

cpp 拉格朗日插值法.cpp

#include void main() {int N,i,j; float x[10],y[10],l[10],x0,y0=0,fz,fm; printf("input N:"); scanf("%d",&N); printf("input x[i] i=0.....N-1:\n"); for(i=0;i
www.eeworm.com/read/180639/9300375

java exp3_1.java

public class EXP3_1 { String ownerName; float speed; float dirInDegree; //定义私有的,非静态的成员变量表示车主姓名、当前的速率和当前方向盘的转向//角度 public EXP3_1(String ownerName){ this.ownerName=ownerName;//定义构
www.eeworm.com/read/180601/9301002

c show_2d.c

#include void main(void) { int row, column; float table[3][5] = {{1.0, 2.0, 3.0, 4.0, 5.0}, {6.0, 7.0, 8.0, 9.0, 10.0}, {11.0
www.eeworm.com/read/180601/9301008

c show_3d.c

#include void main(void) { int row, column, table; float values[2][3][5] = { {{1.0, 2.0, 3.0, 4.0, 5.0}, {6.0, 7.0,
www.eeworm.com/read/180601/9301036

c huge_flt.c

#include #include void main (void) { int i; float huge *values; if ((values = (float huge *) halloc (17000, sizeof(float))) == NULL) printf
www.eeworm.com/read/180601/9301252

c for_more.c

#include void main () { char letter; float percent; for (letter = 'A'; letter = 'a'; letter--)
www.eeworm.com/read/180601/9301281

c sizeof.c

#include void main () { printf("Variables of type int use %d bytes\n", sizeof(int)); printf("Variables of type float use %d bytes\n", sizeof(float)); printf("Variables of ty
www.eeworm.com/read/376818/9305046

c annbp.c

/*********************************************************************/ /* */ /* Artificial Neurul Net Work Progra
www.eeworm.com/read/376794/9306389

cpp new.cpp

// New.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "math.h" //求a矩阵的转置; //其中输入矩阵a为m×n阶,结果保存在n×m阶矩阵b里; void transpose(double a[], int m, int n, double b[]) { int i,j; for (i=0;
www.eeworm.com/read/376722/9309683

cpp jlfx.cpp

# include # include # define X 5//二维数组的行数 # define Y 4//二维数组的列数 float r[X][X]; void simulate(int a[][Y]); void Closure(float r[X][X]); void main() { int i,j, a[X][Y];