代码搜索:数字对讲机

找到约 10,000 项符合「数字对讲机」的源代码

代码结果 10,000
www.eeworm.com/read/131424/14146480

asp random.asp

生成随机字符串
www.eeworm.com/read/131191/14157124

h pl0.h

#include "stdio.h" #define NRW 20 // 保留字的个数 #define TXMAX 100 // 标识符表的长度(容量) #define MAXNUMLEN 14 // 数字允许的最长位数 #define MAXIDLEN 10 // 标识符最长长度 #define MAXADDRESS 2047
www.eeworm.com/read/233199/14163867

html lc_bcb_109.html

用C++Builder创建数字签名
www.eeworm.com/read/231501/14230628

txt num.txt

uchar xdata intbuf[16]={ '\0'}; /*---------------------------------------------------------------------------- 显示数据处理(拆数字) inum:要拆的数; 将一个int型数据转化成ascii码字符串,结尾以'\0'结束,并将结果存于intbuf(全局
www.eeworm.com/read/128000/14320674

asp random.asp

生成随机字符串
www.eeworm.com/read/126690/14406543

java readfile.java

import java.io.*; /**读取文件,返回三种类型的信息 */ public class ReadFile{ Word w; /**存取单词*/ Data d;/**存取数字*/ Interpunction i;/**存取标点符号*/ public ReadFile(File F1)throws IOException{ /**分析过程*/
www.eeworm.com/read/226275/14482559

h serial.h

#ifndef _SERIAL_ #define _SERIAL_ void init_serial(void);//串口初始化 void SendCommString(unsigned char *base);//串口送字符串 char * itoa(UINT, char *, UCHAR);//数字到字符的转换 extern bit CommRecFlag;//串口接收标
www.eeworm.com/read/223809/14616779

htm 模板.htm

超星数字图书馆
www.eeworm.com/read/223502/14638102

htm 模板.htm

超星数字图书馆
www.eeworm.com/read/222477/14688664

cpp h3.cpp

#include using namespace std; int Search(int* a,int* t,int star,int end); int Search(int* a,int* t,int star,int end) { int mid=(star+end)/2,i=0; while(a[i]!=*t) //判断要查找的数字是否存在