代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/427047/8983721
lst main.lst
C51 COMPILER V6.23a MAIN 11/13/2002 23:21:05 PAGE 1
C51 COMPILER V6.23a, COMPILATION OF MODULE MAIN
OBJECT MODULE PLACED IN m
www.eeworm.com/read/427047/8983742
c main.c
#include /* special function register declarations */
/* for the intended 8051 derivative */
#include
www.eeworm.com/read/185762/8987172
lst showlcd.lst
C51 COMPILER V7.09 SHOWLCD 10/11/2006 16:32:11 PAGE 1
C51 COMPILER V7.09, COMPILATION OF MODULE SHOWLCD
OBJECT MODULE PLACED IN
www.eeworm.com/read/185762/8987205
c showlcd.c
#include
#include "sys.h"
#include "ShowLcd.h"
data UCHAR show[6] = {0,0,0,0,0,0};//显示缓冲区
float code GAINU[20]={0.0648,0.1041,0.0878,0.0654,0.0795,0.0939,0.0862,0.0776,1,1,1,1,1,1,1
www.eeworm.com/read/185723/8989028
c analyze.c
/*Analyze.c
*Analyze the syntax tree
*/
#include "Analyze.h"
#include "Symtab.h"
static int location = 0; /*variable memory location*/
static Symtab *pTable;
static FunEntry *pFun;
/*traverse t
www.eeworm.com/read/426970/8989296
cpp 8-11.cpp
#include
void main()
{float average(float array[10]);
float score[10],aver;
int i;
printf("input 10 scores:\n");
for(i=0;i
www.eeworm.com/read/185696/8990907
c lt525.c
# include "stdio.h"
void main( )
{ float sum (float *p,int n);
float num[10],total;
int i;
for (i=0;i
www.eeworm.com/read/185696/8990927
c lt52.c
# include "stdio.h"
void main( )
{ int i;
float j;
int *pointer_1;
float *pointer_2;
scanf("%d%f",&i,&j);
pointer_1=&i;
pointer_2=&j;
printf("%d %f\n ",i,j);
printf(
www.eeworm.com/read/185696/8991147
c lt714.c
# define f(a,b) a*b*a
void main ( )
{ float x=8,y=25,z;
z=f(x,y);
printf("%6.2f\t",z);
z=f(x*x+6*x-8,y+21);
printf("%6.2f\n",z);
}
www.eeworm.com/read/185696/8991212
c sx23.c
# include "stdio.h"
void main( )
{ int a;
float b;
char c;
scanf("%d%d%d",a,b,c);
printf("a= %d\t b= %d\t c= %d\n",a,b,c);
}