代码搜索:多模式

找到约 10,000 项符合「多模式」的源代码

代码结果 10,000
www.eeworm.com/read/197661/6328157

htm dv_news.htm

document.write(' ·数字电视发展最佳模式
www.eeworm.com/read/193359/6355460

txt 9-20.txt

/* 范例:9-20 */ #include #include void main(int argc,char *argv[]) { FILE *fp1; char p1[30]; int i,j,a; if ((fp1=fopen(argv[1],"w"))==NULL) /* 写入模式 */ { pr
www.eeworm.com/read/193359/6355470

txt 9-21.txt

/* 范例:9-21 */ #include #include void main(int argc,char *argv[]) { FILE *fp1; int i,a=10,b=10; if ((fp1=fopen(argv[1],"r"))==NULL) /* 读取模式 */ { printf("文件%s
www.eeworm.com/read/491517/6436851

prg main.prg

set talk off &&关闭对话模式 set safe off set stat off set dele on &&不处理已删除的记录 set cent on set date to ansi close all release window 常用 modify window screen title "图书信息管理系统" zoo
www.eeworm.com/read/489010/6481449

c main.c

/*可以进行基本运算,加入智能判断和容错功能*/ #include "calculate.h" #include "stack.h" #include "ErrorTest.h" //#define DEBUG_M1 0 int main() { char expression[200],c; system("graftabl 936"); //汉字显示模式
www.eeworm.com/read/483035/6607948

cpp kmp.cpp

void get_nextval(const char *T, int next[])//求模式串T的next函数值存入next[] { int j = 0, k = -1; next[0] = -1; while ( T[j/*+1*/] != '\0' ) { if (k == -1 || T[j] == T[k]) { ++j; ++k; if (T
www.eeworm.com/read/483047/6608110

c hdq.c

#include #include "HDQ.h" // 定义工作的状态 enum { imWrite, imWriteE, imRead, imReadE, imDelay }; // 定义全局变量 // 中断服务程序的模式 static unsigned char ISRMode; // 接收到的数据 stat
www.eeworm.com/read/287406/6661655

c hdq.c

#include #include "HDQ.h" // 定义工作的状态 enum { imWrite, imWriteE, imRead, imReadE, imDelay }; // 定义全局变量 // 中断服务程序的模式 static unsigned char ISRMode; // 接收到的数据 stat
www.eeworm.com/read/349895/6684066

c 63.c

#include #include #include /*预定义三个库函数*/ int main() { int x=360,y=160,gdriver=DETECT,gmode;/*选用VGA中2号调色板模式*/ int top,bottom;
www.eeworm.com/read/264803/11300915

c hdq.c

#include #include "HDQ.h" // 定义工作的状态 enum { imWrite, imWriteE, imRead, imReadE, imDelay }; // 定义全局变量 // 中断服务程序的模式 static unsigned char ISRMode; // 接收到的数据 stat