代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/445950/7587553
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/445950/7587566
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/445950/7587662
c for_more.c
#include
void main ()
{
char letter;
float percent;
for (letter = 'A'; letter = 'a'; letter--)
www.eeworm.com/read/445950/7587675
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/445746/7591243
h struct.h
////////////////////////////////////////////////////////////////////////////
//
//
// Project : VideoNet version 1.1.
// Description : Peer to Peer Video Conferencing over the LAN.
//
www.eeworm.com/read/445746/7591268
cpp convert.cpp
////////////////////////////////////////////////////////////////////////////
//
//
// Project : VideoNet version 1.1.
// Description : Peer to Peer Video Conferencing over the LAN.
//
www.eeworm.com/read/445360/7596364
txt 拉格朗日插值.txt
#include
#define ZD 20
main()
{
int k,n,j;
float h[ZD],f[ZD];
float y,l,x;
printf("Input n:");
scanf("%d",&n);
printf("Input n+1 ge shjd:\n");
for(k=0;k
www.eeworm.com/read/445360/7596365
txt 列主元高斯消元法.txt
#include
#include
#define H 20
#define L 30
main()
{
int n,i,j,k,p;
float a[H][L],m[H][L],b[H],x[L];
float max,temp1,temp2,E;
printf("Input n:");
scanf("%d",&n);
www.eeworm.com/read/445360/7596366
txt 牛顿迭代.txt
#include
#include
#include
main()
{
int n,i=1;
float a,b,p,q,f,d;
double tol;
printf("Input a,p,q,n:");
scanf("%f,%f,%f,%d",&a,&p,&q,&n);
while(i
www.eeworm.com/read/445353/7596371
txt 列主元高斯消元法.txt
#include
#include
#define H 20
#define L 30
main()
{
int n,i,j,k,p;
float a[H][L],m[H][L],b[H],x[L];
float max,temp1,temp2,E;
printf("Input n:");
scanf("%d",&n);