代码搜索:monkey

找到约 1,170 项符合「monkey」的源代码

代码结果 1,170
www.eeworm.com/read/122710/14673728

makefile

# Nmake macros for building Windows 32-Bit apps !include all: monkey.exe # Update the resource if necessary monkey.res: monkey.rc monkey.h rc $(rcflags) $(rcvars) -r -fo
www.eeworm.com/read/135930/13885952

install

SOX: Sound Tools Installation September 30, 1998 The sox program is just a batch utility that reads & writes files. It's very easy to port to new computers. This distribution will compile and run
www.eeworm.com/read/134412/13992029

c linkhouhao.c

猴子选大王 任务:一堆猴子都有编号,编号是1,2,3 ...m ,这群猴子(m个)按照1-m的顺序围坐一圈,从第1开始数,每数到第N个,该猴子就要离开此圈,这样依次下来,直到圈中只剩下最后一只猴子,则该猴子为大王。 要求: 输入数据:输入m,n m,n 为整数,n
www.eeworm.com/read/405170/11470505

c main.c

/*************************************************** 程序功能:用串行数据通信方式显示两个图片 ---------------------------------------------------- 跳线设置:将跳线座J5的2脚和3脚(-)用短路帽短接 ------------------------------------------
www.eeworm.com/read/288166/8649687

html test.html

hello Monkey HTTP Daemon v.0.1
www.eeworm.com/read/288166/8649691

makefile

# Monkey HTTP Daemon v0.1.1 by EdsipeR (edsiper@linux-chile.org) # -------------------------------------------------------------- # This program is free software; you can redistribute it and/or modi
www.eeworm.com/read/288166/8649707

bak makefile.bak

# Monkey HTTP Daemon v0.1.1 by EdsipeR (edsiper@linux-chile.org) # -------------------------------------------------------------- # This program is free software; you can redistribute it and/or modi
www.eeworm.com/read/166129/10032517

c 单循环链表.c

#include /*创建一个能调用自身的结构*/ typedef struct cnode { int date; struct cnode *next; }cnode,*linklist; void main() { int m,n,i,j=1; cnode *h,*p,*s; /*以下语句提示用户输入合法的M,N值*/
www.eeworm.com/read/124843/6039665

dpr test.dpr

program Test; uses Forms, Main in 'Main.pas' {MainForm}, Monkey in 'Monkey.pas', ID3v1 in '..\ID3v1\ID3v1.pas', ID3v2 in '..\ID3v2\ID3v2.pas', APEtag in '..\APEtag\APEtag.pas';
www.eeworm.com/read/483339/6604295

c sm.c

#include #include typedef struct monkey { int num;/*猴子号码*/ struct monkey*next; }ListNode,*Linklist; /*=======================================主函数=========================