代码搜索:Math
找到约 10,000 项符合「Math」的源代码
代码结果 10,000
www.eeworm.com/read/135897/13889213
java heart.java
// 程序:笛卡儿数学公式
// 范例文件:Heart.java
import java.applet.*;
import java.awt.*;
public class Heart extends Applet
{
int AppletWidth,AppletHeight;
Image OffScreen;
Graphics d
www.eeworm.com/read/135897/13889223
java rotate.java
// 程序:旋转体
// 范例文件:Rotate.java
import java.applet.*;
import java.awt.*;
public class Rotate extends Applet
{
int AppletWidth,AppletHeight;
Image OffScreen;
Graphics dra
www.eeworm.com/read/300840/13889841
java cylinder.java
import p3.circle;
import p2.Point;
public class Cylinder extends p3.circle
{
int height;
Cylinder(){}
Cylinder(Point p,int r,int h)
{
super(p,r);
height=h;
}
Cylinder(int x,int
www.eeworm.com/read/238320/13893751
c showceil.c
#include
#include
void main (void)
{
printf("The value %f ceil %f\n", 1.9, ceil(1.9));
printf("The value %f ceil %f\n", 2.1, ceil(2.1));
}
www.eeworm.com/read/238320/13893754
c sqrt.c
#include
#include
void main(void)
{
double value;
for (value = 0.0; value < 10.0; value += 0.1)
printf("Value %f sqrt %f\n", value, sqrt(value));
}
www.eeworm.com/read/238320/13893760
c showcosh.c
#include
#include
void main (void)
{
double radians;
for (radians = -0.5; radians
www.eeworm.com/read/238320/13893763
c show_exp.c
#include
#include
void main (void)
{
double value;
for (value = 0.0; value
www.eeworm.com/read/238320/13893769
c show_tan.c
#include
#include
void main(void)
{
double pi = 3.14159265;
printf("Tangent of pi is %f\n", tan(pi));
printf("Tangent of pi/4 is %f\n", tan(pi / 4.0));
}
www.eeworm.com/read/238320/13893775
c showatan.c
#include
#include
void main (void)
{
double radians;
for (radians = -0.5; radians
www.eeworm.com/read/238320/13893782
c show_sin.c
#include
#include
void main(void)
{
double radians;
for (radians = 0.0; radians < 3.1; radians += 0.1)
printf("Sine of %f is %f\n", radians, sin(radians));
}