代码搜索:Math

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

代码结果 10,000
www.eeworm.com/read/172145/9722875

java smallbomb.java

import java.awt.*; public class smallBomb{ private int xPos, yPos; private int timeofbomb = 3; public smallBomb(Point a){ xPos = a.x; yPos = a.y; } public void draw(Graphics g){
www.eeworm.com/read/172140/9723497

java texttest.java

/** * @version 1.20 2 Jul 1998 * @author Cay Horstmann */ import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; class TextTestFrame extends JFram
www.eeworm.com/read/172140/9723608

java drawpoly.java

/** * @version 1.20 23 Jun 1998 * @author Cay Horstmann */ import java.awt.*; import java.awt.event.*; import javax.swing.*; class DrawPolyPanel extends JPanel { public void paintCompo
www.eeworm.com/read/172140/9723611

java fillpoly.java

/** * @version 1.20 23 Jun 1998 * @author Cay Horstmann */ import java.awt.*; import java.awt.event.*; import javax.swing.*; class FillPolyPanel extends JPanel { public void paintCompo
www.eeworm.com/read/367835/9727494

txt 动荡不安的文字.txt

var theText = "欢迎使用网页特效精灵"; function nextSize(i,incMethod,te
www.eeworm.com/read/171932/9729268

java mathcalc.java

public class MathCalc { public static void main(String[] args) { // Calculate the radius of a circle // which has an area of 100 square feet double radius = 0.0; double ci
www.eeworm.com/read/171829/9734559

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/171829/9734561

c showatan.c

#include #include void main(void) { double radians; for (radians = -0.5; radians
www.eeworm.com/read/171829/9734575

c showfabs.c

#include #include void main(void) { float value; for (value = -1.0; value