搜索:Int+13
找到约 1,802 项符合「Int+13」的查询结果
结果 1,802
按分类筛选
- 全部
- 技术资料 (510)
- VIP专区 (307)
- 单片机编程 (96)
- 其他 (57)
- 单片机开发 (57)
- Java编程 (45)
- 其他书籍 (43)
- 数学计算 (38)
- 数据结构 (32)
- 汇编语言 (31)
- VC书籍 (31)
- 源码 (29)
- 书籍源码 (23)
- 技术书籍 (21)
- matlab例程 (17)
- 软件设计/软件工程 (17)
- 编译器/解释器 (15)
- Java书籍 (14)
- 文章/文档 (13)
- 加密解密 (12)
- 可编程逻辑 (12)
- Linux/Unix编程 (12)
- 微处理器开发 (12)
- VHDL/FPGA/Verilog (12)
- C/C++语言编程 (11)
- 模拟电子 (11)
- DSP编程 (9)
- 数值算法/人工智能 (9)
- 数据库系统 (9)
- 电子书籍 (9)
- 操作系统开发 (8)
- 教育系统应用 (8)
- 嵌入式/单片机编程 (8)
- 电源技术 (7)
- 通讯/手机编程 (7)
- 传感与控制 (7)
- 嵌入式综合 (7)
- 游戏 (7)
- 电子书籍 (6)
- PCB相关 (6)
- 学术论文 (6)
- Internet/网络编程 (6)
- 系统设计方案 (6)
- SQL Server (6)
- 手册 (6)
- 其他 (6)
- 技术教程 (5)
- 开发工具 (5)
- 磁盘编程 (5)
- 人工智能/神经网络 (5)
- Windows CE (5)
- 笔记 (5)
- Linux/uClinux/Unix编程 (4)
- 通信网络 (4)
- 压缩解压 (4)
- 串口编程 (4)
- USB编程 (4)
- 通讯编程文档 (4)
- Delphi控件源码 (4)
- Symbian (4)
- 其他嵌入式/单片机内容 (4)
- 软件 (4)
- 书籍 (4)
- 无线通信 (3)
- 仿真技术 (3)
- 教程资料 (3)
- *行业应用 (3)
- 企业管理 (3)
- uCOS (3)
- J2ME (3)
- Delphi/CppBuilder (3)
- 中间件编程 (3)
- 精品软件 (3)
- 习题答案 (3)
- 家电维修 (2)
- 设计相关 (2)
- 多媒体处理 (2)
- 汇编编程 (2)
- PCB图/BOM单/原理图 (2)
- 其他文档 (2)
- 软件工程 (2)
- 工控技术 (2)
- 驱动编程 (2)
- 语音压缩 (2)
- Applet (2)
- 文件格式 (2)
- 其他数据库 (2)
- 嵌入式Linux (2)
- STL (2)
- 酒店行业 (2)
- Oracle数据库 (2)
- 邮电通讯系统 (2)
- Jsp/Servlet (2)
- 经验 (2)
- 课件教程 (1)
- 机械五金 (1)
- 电气制图标准 (1)
- LED驱动及控制 (1)
- Pro/E教程 (1)
- 电子工艺,质量及可靠性 (1)
https://www.eeworm.com/dl/644/270637.html
汇编语言
class Time { public: Time(int =0,int =0,int =0) void setTime(int,int,int) void printMilita
class Time
{
public:
Time(int =0,int =0,int =0)
void setTime(int,int,int)
void printMilitary()
void printStandard()
private:
int hour
int minute
int second
}
https://www.eeworm.com/dl/534/255740.html
其他
huffman 编码。typedef struct { int weight int flag int parent int lchild int rchild }
huffman 编码。typedef struct
{
int weight
int flag
int parent
int lchild
int rchild
}hnodetype
https://www.eeworm.com/dl/534/456882.html
其他
Usage: void CRC(int*,int*,int,int) Input: XAR0:coded data(InputData)
Usage: void CRC(int*,int*,int,int)
Input: XAR0:coded data(InputData)
XAR1:decoded CRC bits(CrcPoly)
T0: Length of coded data(CodeOutlen)
T1: Length of CRC bits(CrcPolylen) ...
https://www.eeworm.com/dl/686/223786.html
VC书籍
void statistics(int signo) unsigned short cal_chksum(unsigned short *addr,int len) int pack(int
void statistics(int signo)
unsigned short cal_chksum(unsigned short *addr,int len)
int pack(int pack_no)
void send_packet(void)
https://www.eeworm.com/dl/658/393667.html
STL
int getDivisor(int iNum) { int i = 1 int sum = 0 if (0 == iNum) { return 1 } while
int getDivisor(int iNum)
{
int i = 1
int sum = 0
if (0 == iNum)
{
return 1
}
while (i <= iNum / 2)
{
if (0 == iNum % i)
{
sum++
}
i++
}
return (sum+1)
}
https://www.eeworm.com/dl/619/451808.html
Linux/Unix编程
int show_char(int n, const char *name, chtype code) { const int height = 16 int row = 4 + (
int show_char(int n, const char *name, chtype code)
{
const int height = 16
int row = 4 + (n height)
int col = (n / height) * COLS / 2
mvprintw(row, col, " *s : ", COLS/4, name)
addch(code)
return n + 1
}
https://www.eeworm.com/dl/650/376204.html
人工智能/神经网络
河內塔問題 #include<stdio.h> #include<stdlib.h> int fun_a(int) void fun_b(int,int,int,in
河內塔問題
#include<stdio.h>
#include<stdlib.h>
int fun_a(int)
void fun_b(int,int,int,int)
int main(void)
{
int n
int option
printf("題目二:河內塔問題\n")
printf("請輸入要搬移的圓盤數目\n")
scanf("%d",&n)
printf("最少搬移的次數為%d次\n",fun_a(n))
printf("是否顯示 ...
https://www.eeworm.com/dl/684/304512.html
软件设计/软件工程
请编写一个函数jsValue(int m,int k,int xx[])
请编写一个函数jsValue(int m,int k,int xx[]),该函数的功能是:将大于整数m且紧靠m的k个素数存入数组xx传回。
最后调用函数writeDat()读取10组数据,分别得出结果且把结果输出到文件out.dat中。
部分源程序存在文件prog1.c中。
例如:若输入17 5 则应输出:19,23,29,31,37。 ...