代码搜索:third
找到约 4,828 项符合「third」的源代码
代码结果 4,828
www.eeworm.com/read/154890/5633051
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 inline
www.eeworm.com/read/152843/5659852
c syscalls.c
/*
* Copyright (C) 2000 - 2003 Jeff Dike (jdike@addtoit.com)
* Licensed under the GPL
*/
#include "linux/sched.h"
#include "linux/shm.h"
#include "asm/ipc.h"
#include "asm/mman.h"
#include "asm/u
www.eeworm.com/read/474426/6809201
c 四塔1.c
#include
//--------------------------------------------------------
// 打印搬运动作
//--------------------------------------------------------
int MoveIt(int x,int Source,int Target)
{
www.eeworm.com/read/474002/6828391
asm noname.asm
assume cs:code,ds:data
data segment
first db 1,254 dup(0)
second db 255 dup(0)
third db 255 dup(0)
IBUF db 0ffh,0,255 dup(0)
data ends
code segment
begin: mov ax,data
mov ds,
www.eeworm.com/read/471457/6893206
c unit1.c
//---------------------------------------------------------------------------
#pragma hdrstop
int order=0; //操作顺序号
void hanoi(int n,char first,char second,char third)
{
if(n==1)
www.eeworm.com/read/193607/8213428
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/367407/9751895
cs destructordemo.cs
using System;
class clsSample
{
clsSample(string name)
{
Name = name;
}
~clsSample()
{
Console.WriteLine("Calling the destructor for {0}", Name);
}
www.eeworm.com/read/366869/9795202
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/414769/11102380
for airy.for
SUBROUTINE airy(x,ai,bi,aip,bip)
REAL ai,aip,bi,bip,x
CU USES bessik,bessjy
REAL absx,ri,rip,rj,rjp,rk,rkp,rootx,ry,ryp,z,PI,THIRD,TWOTHR,
*ONOVRT
PARAMETER (PI=3.
www.eeworm.com/read/414769/11102623
for rc.for
FUNCTION rc(x,y)
REAL rc,x,y,ERRTOL,TINY,SQRTNY,BIG,TNBG,COMP1,COMP2,THIRD,C1,C2,
*C3,C4
PARAMETER (ERRTOL=.04,TINY=1.69e-38,SQRTNY=1.3e-19,BIG=3.E37,
*TNBG=TINY*BIG,CO