代码搜索:Math
找到约 10,000 项符合「Math」的源代码
代码结果 10,000
www.eeworm.com/read/335968/12487536
java processorapp.java
/********************************************************************************
* This code includes sample image filters built in Java and a demo applet using
* some of their features.
* Ple
www.eeworm.com/read/335836/12493964
htm 23.10.htm
随机显示的背景图片
bg = new Array(2); //设定图片数量,如果图片数为3,这个参数就设为2,依次类推
bg[0] = 'image1.gif' //显示的图片路径,可用http://
bg[1] = 'star.gif'
bg[2
www.eeworm.com/read/335806/12497124
cs chap0608.cs
using System;
using System.IO;
using iTextSharp.text;
using iTextSharp.text.pdf;
namespace iTextSharp.tutorial.Chap06
{
public class Chap0608
{
public Chap0608()
{
www.eeworm.com/read/335795/12498810
c io20_9.06.c
// #include
// #include
// #include
#include
#include
#include
/**
** note: must include the C standard math library
**
www.eeworm.com/read/335661/12509571
c 2powr.c
#include "math.h"
void powr(x,y,n,u,v)
int n;
double x,y,*u,*v;
{ double r,q;
q=atan2(y,x);
r=sqrt(x*x+y*y);
if (r+1.0!=1.0)
{ r=n*log(r); r=exp(r);}
*u=r*co
www.eeworm.com/read/335661/12509592
c 2ntrt.c
#include "math.h"
void ntrt(x,y,n,u,v)
int n;
double x,y,u[],v[];
{ int k;
double r,q,t;
if (n
www.eeworm.com/read/335661/12509595
c 2csin.c
#include "math.h"
void csin(x,y,u,v)
double x,y,*u,*v;
{ double p,q;
p=exp(y); q=exp(-y);
*u=sin(x)*(p+q)/2.0; *v=cos(x)*(p-q)/2.0;
return;
}
www.eeworm.com/read/335661/12509626
c 2ccos.c
#include "math.h"
void ccos(x,y,u,v)
double x,y,*u,*v;
{ double p,q;
p=exp(y); q=exp(-y);
*u=cos(x)*(p+q)/2.0; *v=-sin(x)*(p-q)/2.0;
return;
}
www.eeworm.com/read/335607/12512563
java j03190601.java
import java.lang.*;
import static java.lang.System.out;
import static java.lang.Math.*;
import static java.lang.Math.abs;
import static myMath.Math.abs;
public class j03190601
{
public s