代码搜索:third
找到约 4,828 项符合「third」的源代码
代码结果 4,828
www.eeworm.com/read/139776/13134204
c airy.c
#include
#define PI 3.1415927
#define THIRD (1.0/3.0)
#define TWOTHR (2.0*THIRD)
#define ONOVRT 0.57735027
void airy(float x, float *ai, float *bi, float *aip, float *bip)
{
void bessik(fl
www.eeworm.com/read/325023/13231510
java threetuple.java
//: net/mindview/util/ThreeTuple.java
package net.mindview.util;
public class ThreeTuple extends TwoTuple {
public final C third;
public ThreeTuple(A a, B b, C c) {
super(a,
www.eeworm.com/read/137285/13335053
c fe_var_def.c
c->gamma = -1 ; /* -gamma gamma */
c->metric = 1 ; /* -metric m(0/1) */
c->writelog = 0 ; /* -log l */
c->macarg.stepmax = 0.1 ; /* -o
www.eeworm.com/read/314620/13563453
asm prog6_3.asm
data segment
first dw 0d56ch
second dw 1f08h
third dw ?
third2 dw 2 dup(?)
data ends
code segment
assume cs:code,ds:data
start:mov ax,data
mov
www.eeworm.com/read/313168/13594358
c 四塔1.c
#include
//--------------------------------------------------------
// 打印搬运动作
//--------------------------------------------------------
int MoveIt(int x,int Source,int Target)
{
www.eeworm.com/read/313122/13596169
asm 电梯.asm
org 0000h
main: clr p1.6
clr p1.7
jb p2.6,down
jb p2.7,up
jb p1.0,first
jb p1.1,second
jb p1.2,third
jb p1.3,fourth
www.eeworm.com/read/313122/13596170
asm test.asm
P1.6和P1.7为上下输出
P2.6和P2.7为上下控制按钮,按下输出高电平。
P1.0~P1.3分别是一二三四层的光控点,接通输出高电平。
电梯到顶按向上无反应,电梯到底按下降无反应。
org 0000h
main: clr p1.6
clr p1.7
jb p2.6,down
jb p2.7,up
www.eeworm.com/read/312211/13616019
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/308157/13707095
c 四塔1.c
#include
//--------------------------------------------------------
// 打印搬运动作
//--------------------------------------------------------
int MoveIt(int x,int Source,int Target)
{
www.eeworm.com/read/308059/13710204
java minmaxcategoryplotdemo.java
/* ---------------------------
* MinMaxCategoryPlotDemo.java
* ---------------------------
* (C) Copyright 2002-2005, by Object Refinery Limited.
*
*/
package demo;
import java.awt.Col