代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/447019/7560482
t identity2.t
{
int i; int j; float[10][10] a;
i = 0;
while(true) {
j = 0;
while(true) {
a[i][j] = 0.0;
if( j >= 10 ) break;
}
if( i >= 10 ) break;
}
i = 0;
while(true) {
a[i][i] = 1.0;
if(
www.eeworm.com/read/446969/7562330
c methods.c
#include "headfile.h"
#include "global.h"
#include "mem_loc.h"
#include "myfun.h"
#include "methods.h"
float meanTotalValues(FMATRIX values, int row, int col) {
float meanValue = 0;
int i,
www.eeworm.com/read/446732/7569526
txt 例8.12.txt
例8.12
float average(float array[ ]
,int n)
{int i;
float aver,sum=array[0];
for(i=1;i
www.eeworm.com/read/446732/7569614
txt 例10.26.txt
例10.26对上例中的学生,找出其中有不及格课程的学生及其学生号。
程序如下:
main()
{float score[ ][4]={{60,70,80,90},{50,89,67,88},{34,78,90,66}};
float
www.eeworm.com/read/446732/7569627
txt 例14.3.txt
例14.3 求3个数中最大的数(分别考虑整数、实数、长整数的情况)。
#include
int max(int a, int b, int c) //求3个整数中的最大者
{ if (b>a) a=b;
if (c>a) a=c;
return a; }
float max(float a,float b, float c) //求3个实数中
www.eeworm.com/read/446558/7576716
c fft2.c
#include "config.h"
#include
struct fushu //fushu结构体表示复数
{ float re; //实部
float im; //虚部
};
void fsmul(struct fushu *p,struct fushu a,s
www.eeworm.com/read/445963/7587135
txt keyword.txt
int
char
float
void
const
for
if
else
then
while
switch
break
begin
end
www.eeworm.com/read/445963/7587136
txt sourcefile.txt
void aa( )
begin
float rate,circle; #
rate=3;
circle=3.14*rate * rate;/*hello
end
www.eeworm.com/read/445950/7587550
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