代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/188275/8553831
cpp mm.cpp
#include "math.h"
#include "stdio.h"
main()
{ int n=0;
float t,h,a,b,c,d,f1,f2;
printf("t,h:"); scanf("%f,%f",&t,&h);
f1=t*t-2*t+4;
if((t+h)*(t+h)-2*(t+h)+4
www.eeworm.com/read/389019/8554311
h trid.h
//解三对角方程组的追赶法
int trid(float a[],float b[],float c[],float f[])
{
float s[n],t[n],temp;
int i;
s[0]=0;t[0]=1;
for(i=0;i
www.eeworm.com/read/188135/8568738
cpp 1_2.cpp
#include
void main()
{
float a,b,c,min;
couta>>b>>c;
min=a;
if(min>b) min=b;
if(min>c) min=c;
cout
www.eeworm.com/read/188135/8569265
cpp shiyan5_1.cpp
//lab3_1.cpp
#include
float Convert(float);
int main()
{
float TempFer;
float TempCel;
cout > TempFer;
www.eeworm.com/read/289184/8569367
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/289184/8569378
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/289184/8569431
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/289184/8569653
c for_more.c
#include
void main ()
{
char letter;
float percent;
for (letter = 'A'; letter = 'a'; letter--)
www.eeworm.com/read/188135/8569656
cpp 6-4.cpp
#include
# define N 10
float average(float *p,int i)
{
float sum=0.0,aver;
for(i=0;i
www.eeworm.com/read/289184/8569706
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