搜索结果
找到约 699 项符合
Int 的查询结果
按分类筛选
- 全部分类
- 技术资料 (139)
- 单片机开发 (63)
- 单片机编程 (44)
- 其他 (44)
- 汇编语言 (38)
- 源码 (28)
- Java编程 (28)
- 数学计算 (27)
- 数据结构 (25)
- 编译器/解释器 (16)
- 加密解密 (11)
- 文章/文档 (11)
- C/C++语言编程 (10)
- DSP编程 (10)
- 嵌入式/单片机编程 (10)
- 书籍源码 (9)
- VC书籍 (9)
- 操作系统开发 (8)
- 其他 (7)
- 其他书籍 (7)
- 微处理器开发 (7)
- 压缩解压 (6)
- Linux/Unix编程 (6)
- 软件设计/软件工程 (6)
- VIP专区 (6)
- 其他嵌入式/单片机内容 (5)
- 数值算法/人工智能 (4)
- USB编程 (4)
- 嵌入式Linux (4)
- matlab例程 (4)
- 软件 (3)
- 笔记 (3)
- 经验 (3)
- 习题答案 (3)
- 应用设计 (3)
- 通讯/手机编程 (3)
- 开发工具 (3)
- 嵌入式综合 (3)
- 教育系统应用 (3)
- 游戏 (3)
- Java书籍 (3)
- 中间件编程 (3)
- 手册 (2)
- 电源技术 (2)
- Linux/uClinux/Unix编程 (2)
- 设计相关 (2)
- 汇编编程 (2)
- 技术书籍 (2)
- 模拟电子 (2)
- 电子书籍 (2)
- Internet/网络编程 (2)
- 串口编程 (2)
- *行业应用 (2)
- uCOS (2)
- 人工智能/神经网络 (2)
- 系统设计方案 (2)
- 邮电通讯系统 (2)
- Jsp/Servlet (2)
- 书籍 (1)
- 电子大赛 (1)
- 开发板 (1)
- 接口技术 (1)
- 数据库系统 (1)
- 仿真技术 (1)
- PCB图/BOM单/原理图 (1)
- 其他文档 (1)
- 技术教程 (1)
- 教材/考试/认证 (1)
- 单片机相关 (1)
- 传感与控制 (1)
- CCS (1)
- 教程资料 (1)
- 源码/资料 (1)
- 驱动编程 (1)
- 语音压缩 (1)
- 企业管理 (1)
- Applet (1)
- 网络 (1)
- 多国语言处理 (1)
- 金融证券系统 (1)
- 文件格式 (1)
- CA认证 (1)
- STL (1)
- 酒店行业 (1)
- J2ME (1)
- VHDL/FPGA/Verilog (1)
- Delphi控件源码 (1)
- 其他行业 (1)
- 交通/航空行业 (1)
- Windows CE (1)
- JavaScript (1)
- GPS编程 (1)
- Ajax (1)
汇编语言 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
}
其他 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
其他 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)
Return: ...
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)
}
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)
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
}
软件设计/软件工程 请编写一个函数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。 ...
文章/文档 int trace (int i, int j, int low, IMAGE im,IMAGE mag, IMAGE ori) float gauss(float x, float sigma) f
int trace (int i, int j, int low, IMAGE im,IMAGE mag, IMAGE ori) float gauss(float x, float sigma) float dGauss (float x, float sigma) float meanGauss (float x, float sigma) void hysteresis (int high, int low, IMAGE im, IMAGE mag, IMAGE oriim) void canny (float s, IMAGE im, IMAGE mag, IMAGE ori)
人工智能/神经网络 河內塔問題 #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("是否顯示移動過程? 是請輸入1, ...