代码搜索:math
找到约 10,000 项符合「math」的源代码
代码结果 10,000
www.eeworm.com/read/129197/14258771
java math.java
public class Math {
public static int square( int i ) {
return i*i;
}
public static void main( String[] args ) {
for( int i=1; i
www.eeworm.com/read/230949/14264960
lib math.lib
www.eeworm.com/read/230929/14267615
h math.h
www.eeworm.com/read/129000/14270006
mak math.mak
#-----------------------------------------------------------------------
# File : math.mak
# Contents: build math utility modules
# Author : Christian Borgelt
# History : 26.01.2003 file created
#
www.eeworm.com/read/128996/14270477
mak math.mak
#-----------------------------------------------------------------------
# File : math.mak
# Contents: build math utility modules
# Author : Christian Borgelt
# History : 26.01.2003 file created
#
www.eeworm.com/read/128628/14285916
c math.c
#include
void main(void)
{
int seconds_in_an_hour;
float average;
seconds_in_an_hour = 60 * 60;
average = (5 + 10 + 15 + 20) / 4;
printf("The number of seconds i
www.eeworm.com/read/128581/14290630
h math.h
www.eeworm.com/read/229711/14324563
c math.c
/***************************************************************************
* This code and information is provided "as is" without warranty of any *
* kind, either expressed or implied, includ
www.eeworm.com/read/127960/14324860
cpp math.cpp
//这个程序在本书所带软盘中,文件名为MATH.CPP
//这个程序演示怎样调用库子程序来计算对数、指数以及余弦。
#include
#include //这个头文件支持进行数学运算的库子程序
void main(void)
{
int num1 = 10;
float num2 = 9.387;
double resul
www.eeworm.com/read/127726/14338960
h math.h
extern double fabs(double);
extern double floor(double);
extern double ceil(double);
extern double modf(double, double *);
extern double sqrt(double);
extern double atof(const char *);
extern double s