代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/451442/7463746
cpp matrix_tool.cpp
// This file contains some useful calculate function for matrix.
// Programmer: Unknown some senior students.
#include "Common.h"
//the Multiply algorithm of two Matrix
void ComMatrix_Mul(IN c
www.eeworm.com/read/451329/7467091
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/451329/7467094
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/451329/7467107
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/451329/7467204
c for_more.c
#include
void main ()
{
char letter;
float percent;
for (letter = 'A'; letter = 'a'; letter--)
www.eeworm.com/read/451329/7467217
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/451140/7470732
c graphics.c
#include
#include
#include
#include
#include "util.h"
#include "graphics.h"
#include "vpr_types.h"
/*#include "draw.h" */
#ifndef NO_GRAPHICS
#include
www.eeworm.com/read/451140/7470768
h graphics.h
#define SCREEN 0
#define POSTSCRIPT 1
enum color_types
{ WHITE, BLACK, DARKGREY, LIGHTGREY, BLUE, GREEN, YELLOW,
CYAN, RED, DARKGREEN, MAGENTA, BISQUE, LIGHTBLUE, THISTLE, PLUM, KHAKI,
COR
www.eeworm.com/read/451135/7470870
cpp gold.cpp
#include
#include
#include
#define e 0.001 /*收敛精度*/
#define tt 0.01 /*一维搜索步长*/
float function(float x) /*定义已知函数*/
{
float y=pow(x,4)-4*pow(x,3)-6*pow(x,2)-
www.eeworm.com/read/450798/7476691
cpp 小明买书.cpp
#include
//#include
#define ABS(x) (((x)>0)?(x):(-(x)))
void GetInputValue(float * a,const int howmany)
{
int i=0;
for(i=0;i