代码搜索:Math
找到约 10,000 项符合「Math」的源代码
代码结果 10,000
www.eeworm.com/read/204914/15331812
c showatan.c
#include
#include
void main (void)
{
double radians;
for (radians = -0.5; radians
www.eeworm.com/read/204914/15331815
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));
}
www.eeworm.com/read/204914/15331816
c showasin.c
#include
#include
void main (void)
{
double radians;
for (radians = -0.5; radians
www.eeworm.com/read/204914/15331817
c showacos.c
#include
#include
void main (void)
{
double radians;
for (radians = -0.5; radians
www.eeworm.com/read/204914/15331822
c showfmod.c
#include
#include
void main (void)
{
double numerator = 10.0;
double denominator = 3.0;
printf("fmod(10, 3) is %f\n", fmod(numerator,
denominator));
}
www.eeworm.com/read/204914/15331823
c showfabs.c
#include
#include
void main (void)
{
float value;
for (value = -1.0; value
www.eeworm.com/read/204914/15331824
c show_cos.c
#include
#include
void main (void)
{
printf("cosine of pi/2 is %6.4f\n", cos(3.14159/2.0));
printf("cosine of pi is %6.4f\n", cos(3.14159));
}
www.eeworm.com/read/204850/15332841
java rectboundedshape.java
/*
* RectBoundedShape.java
*
* Created on April 29, 2005, 4:48 PM
*/
package hysun.draw;
import java.awt.*;
import java.awt.event.MouseEvent;
/**
*
* @author hysun
*/
public abstract class R
www.eeworm.com/read/204848/15332866
java minidrawpad.java
package MiniDrawPad;
import java.awt.*;
import java.awt.geom.*;
import java.awt.event.*;
import javax.swing.*;
import java.io.*;
import java.util.*;
public class MiniDrawPad extends JFram
www.eeworm.com/read/204559/15337068
c io20_9.06.c
// #include
// #include
// #include
#include
#include
#include
/**
** note: must include the C standard math library
**