代码搜索:Math

找到约 10,000 项符合「Math」的源代码

代码结果 10,000
www.eeworm.com/read/212387/15156692

java cannonworld.java

// // CannonWorld application, second version of Cannon Game // Described in Chapter 6 of // Understanding Object-Oriented Programming with Java // by Timothy A Budd // Published by Addison-Wesley //
www.eeworm.com/read/212387/15156694

java cannongame.java

// // CannonGame application // Described in Chapter 6 of // Understanding Object-Oriented Programming with Java // by Timothy A Budd // Published by Addison-Wesley // // see ftp://ftp.cs.orst.edu/pub
www.eeworm.com/read/212271/15160745

bak narcissus.java.bak

public class Narcissus{ public static void main(String args[]){ int i,j,k,n=100,m=1; while(n
www.eeworm.com/read/212271/15160747

java narcissus.java

public class Narcissus{ public static void main(String args[]){ int i,j,k,n=100,m=1; while(n
www.eeworm.com/read/212047/15166847

texi specfunc-elljac.texi

@cindex Jacobi elliptic functions @cindex elliptic functions (Jacobi) The Jacobian Elliptic functions are defined in Abramowitz & Stegun, Chapter 16. The functions are declared in the header file @f
www.eeworm.com/read/212047/15166932

texi complex.texi

@cindex complex numbers The functions described in this chapter provide support for complex numbers. The algorithms take care to avoid unnecessary intermediate underflows and overflows, allowing the
www.eeworm.com/read/212047/15166975

texi multifit.texi

@cindex nonlinear least squares fitting @cindex least squares fitting, nonlinear This chapter describes functions for multidimensional nonlinear least-squares fitting. The library provides low level
www.eeworm.com/read/211952/15169586

cpp p1070.cpp

#include #include double Vs , R , c , w; int n; int i; main () { scanf ( "%lf %lf %lf %d" , &Vs , &R , &c , &n ); for ( i = 0; i < n; i ++ ) {
www.eeworm.com/read/211952/15169796

cpp p2486_数学公式.cpp

#include #include int N; double p; main () { while ( scanf ( "%d%lf" , &N , &p ) != EOF ) { printf ( "%.lf\n" , exp ( log ( p ) / N ) + 1e-8 );
www.eeworm.com/read/211952/15169902

cpp p1904.cpp

#include #include int main() { double D,V; while(scanf("%lf%lf",&D,&V),D||V) printf("%0.3lf\n",pow(D*D*D-V*1.9098593497,1.0/3));//6/PI return 0; }