代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/276742/10710966
h dft.h
/* dft.h - function prototypes and structures for dft and fft functions */
/* COMPLEX STRUCTURE */
typedef struct {
float real, imag;
} COMPLEX;
/* function prototypes for dft and inver
www.eeworm.com/read/276695/10714781
cpp main.cpp
#include "seqstack.h"
void main()
{
Seqstack mystack;
float a=5.5;
int i;
cout
www.eeworm.com/read/421634/10723274
cpp 例6_7.cpp
//建立哈夫曼树
#include
const int n=8; //n表示叶子数目
const int m=2*n-1 ; //m为森林中树的棵数
struct tree
{
float weight; //权值
int parent; //双亲
int lch,rch;
www.eeworm.com/read/350637/10724688
c sizeof.c
#include
void main(void)
{
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
www.eeworm.com/read/350637/10725658
c huge_flt.c
#include
#include
void main(void)
{
int i;
float huge *values;
if ((values = (float huge *) halloc (17000, sizeof(float))) == NULL)
printf ("E
www.eeworm.com/read/350637/10725664
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/350637/10725686
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/350637/10726444
c for_more.c
#include
void main(void)
{
char letter;
float percent;
for (letter = 'A'; letter = 'a'; letter--)
www.eeworm.com/read/350636/10726584
c sizeof.c
#include
void main(void)
{
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
www.eeworm.com/read/350636/10727779
c for_more.c
#include
void main(void)
{
char letter;
float percent;
for (letter = 'A'; letter = 'a'; letter--)