代码搜索:third
找到约 4,828 项符合「third」的源代码
代码结果 4,828
www.eeworm.com/read/414769/11102682
for rf.for
FUNCTION rf(x,y,z)
REAL rf,x,y,z,ERRTOL,TINY,BIG,THIRD,C1,C2,C3,C4
PARAMETER (ERRTOL=.08,TINY=1.5e-38,BIG=3.E37,THIRD=1./3.,
*C1=1./24.,C2=.1,C3=3./44.,C4=1./14.)
REAL
www.eeworm.com/read/266288/11232999
java minmaxcategoryplotdemo.java
package demo;
import java.awt.Color;
import java.awt.Dimension;
import org.jfree.chart.*;
import org.jfree.chart.plot.CategoryPlot;
import org.jfree.chart.plot.PlotOrientation;
import
www.eeworm.com/read/334951/12559546
cpp airy.cpp
#include
#include "nr.h"
using namespace std;
void NR::airy(const DP x, DP &ai, DP &bi, DP &aip, DP &bip)
{
const DP PI=3.141592653589793238, ONOVRT=0.577350269189626;
const DP THIRD
www.eeworm.com/read/135519/13924300
cpp longint.cpp
#include"malloc.h"
#include"stdio.h"
#define OK 1
#define ERROR 0
#define len 10
typedef struct DLNode
{
char data;
struct DLNode *prior;
struct DLNode *next;
}DLNode,*DLinkList;
www.eeworm.com/read/134619/13980162
cpp slice1.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/113911/15444164
java fibonacc.java
import java.applet.*;
import java.awt.*;
public class Fbnc extends Applet
{
Label prompt;//定义提示标签
TextField input;//定义输入文本框
long first;
long second;
long third,num;
public voi
www.eeworm.com/read/113613/15452313
asm readme.asm
README - DOOM assembly code
Okay, I add the DOS assembly module for the historically
inclined here (may rec.games.programmer suffer). If anyone
feels the urge to port these to GNU GCC; either i
www.eeworm.com/read/111650/15507217
cpp slice1.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/109232/15560989
cpp stringsamples.cpp
// This is the main project file for VC++ application project
// generated using an Application Wizard.
#include "stdafx.h"
#using
#include
using namespace System;
www.eeworm.com/read/109232/15561412
cpp main.cpp
#include
#include
using namespace std;
template
class CoolHolder {
public:
T first;
T second;
T third;
T sum() {
return first +