代码搜索:Math
找到约 10,000 项符合「Math」的源代码
代码结果 10,000
www.eeworm.com/read/238106/13906961
cpp ch4_5.cpp
//*********************
//** ch4_5.cpp **
//*********************
#include
#include
void main()
{
double s=0,x=1; //初始值
for(int n=1; fabs(x)>1e-8; n++,x*=
www.eeworm.com/read/238106/13906965
cpp ch4_7.cpp
//*********************
//** ch4_7.cpp **
//*********************
#include
#include
void main()
{
//输入
long m;
cout
www.eeworm.com/read/135720/13907124
java generalpath.java
import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;
import javax.swing.*;
public class generalPath extends JFrame {
public generalPath (){
super( "Drawing 2D Shapes" );
s
www.eeworm.com/read/237638/13940197
cpp 11_1.cpp
//11_1
#include
class Point{
public:
void Set(double ix,double iy) //设置坐标
{
www.eeworm.com/read/237637/13940814
cpp ch4_5.cpp
//*********************
//** ch4_5.cpp **
//*********************
#include
#include
void main()
{
double s=0,x=1; //初始值
for(int n=1; fabs(x)>1e-8; n++,x*=
www.eeworm.com/read/237637/13940822
cpp ch4_7.cpp
//*********************
//** ch4_7.cpp **
//*********************
#include
#include
void main()
{
//输入
long m;
cout
www.eeworm.com/read/237337/13968079
cpp er.cpp
#include
#include
float f(float x)
{
float f;
f=cos(x);
return f;
}
void main()
{
float a,b,s,x,h;
int n,j;
printf("请输入它的下界:");
scanf("%f",&a);
printf("请输入它
www.eeworm.com/read/236970/13986523
js treeguide.js
function moveAlong(layerName, paceLeft, paceTop, fromLeft, fromTop){
clearTimeout(eval(layerName).timer)
if(eval(layerName).curLeft != fromLeft){
if((Math.max(eval(layerName).curLeft, fromLeft)
www.eeworm.com/read/134434/13991042
txt 新建 文本文档 (3).txt
/*
C/C++ Program Source file.
Program name : Student information manage system.
Version : 1.0
Author : Writed by YinShengge [ 殷圣鸽 ]
Release Time : 11:19 2005-5-20
Maintain T
www.eeworm.com/read/236837/13997375
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));
}