代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/284604/8914350
c mbiline.c
#include
#include
#include
#include "msp.h"
void mbiline(float d[],float c[],int ln,
float b[],float a[],int *ierror)
{
/*-------------------------
www.eeworm.com/read/284604/8914362
c munwrap.c
#include
#include
#include
#include "msp.h"
void munwrap(float phase[],int n)
{
/*----------------------------------------------------------------------
Routine
www.eeworm.com/read/284578/8916481
java simpleinput.java
package javabook;
import java.io.*;
/**
* Provides a simple input routine for non-GUI programs. Supports reading
* integers, real numbers, and strings.
*
*/
public class SimpleInput
{
www.eeworm.com/read/284557/8917219
zb readme.zb
This program needs data file.It can draw curvers.
data file format: int float int float......
www.eeworm.com/read/284557/8917288
c readval.c
#include "stdio.h"
#define MAX 5000
void main()
{
FILE *fp1,*fp2,*fp3;
float ver[50];
int nodenum,t[14],i,j;
int num_node[4];
int node_number;
float val[MAX];
char ch,s1[80],s2[80],s3[80],va
www.eeworm.com/read/284554/8919607
c prog9.c
/*
编写函数fun,它的功能是:根据以下公式求P的值,结果由函数值带回。m与n为两个正整数且要求m>n。
P=m!/(n!(m-1)!
例如,m=12,n=8时,运行结果为495.000000。
注意:部分源程序给出如下。
请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。
*/
#include ...
www.eeworm.com/read/284554/8919686
c modi9.c
/*
下列给定程序中,函数fun的功能是:从n个学生的成绩中统计出低于平均分的学生人数,此人数由函数值返回,平均分存放在形参aver所指的存储单元中。例如,若输入8名学生的成绩:
80.5 60 72 90.5 98 51.5 88 64
则低于平均分的学生人数为4(平均分为:75.5625)。
请改正程序中的错误,使它能统计出正确的结果。
注意:不要改动main函 ...
www.eeworm.com/read/284554/8919837
c modi86.c
/*
下列给定程序中,函数fun的功能是:把主函数中输入的3个数,最大的放在a中,最小的放在c中。例如,输入的数为;55 12 34,输出结果应当是:a=55.0,b=34.0,c=12.0。
请改正程序中的错误,使它能得出正确结果。
注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。
*/
#include
void fun(fl ...
www.eeworm.com/read/284554/8919866
c modi81.c
/*
下列给定程序中,函数fun的功能是:根据整型参n,计算如下公式的值。
A1=1,A2=1/(1+A1),A3=1/(1+A2),…,An=1/(1+An-1)
例如,若n=10,则应输出0.617977。
请改正程序中的错误,使它能得出正确的结果。
注意:不得改动main函数,不得增行或删行,也不得更改程序的结构。
*/
#include
#i
www.eeworm.com/read/427490/8940029
cpp main.cpp
/* Copyright (c) 2007 Massachusetts Institute of Technology
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (t