搜索结果

找到约 699 项符合 Int 的查询结果

按分类筛选

显示更多分类

教育系统应用 c++图书管理系统 include <iostream> #include <iomanip> #include <string> #include &lt

c++图书管理系统 include <iostream> #include <iomanip> #include <string> #include <fstream>//输入/输出文件流类 using namespace std const int Maxr=100 //最多的读者 const int Maxb=100 //最多的图书 const int Maxbor=5 //每位读者最多借五本书 //读者类,实现对读者的信息的描述 ...
https://www.eeworm.com/dl/621/304040.html
下载: 55
查看: 1252

技术资料 串口调试源代码

#include #include #include #define BUFFLEN 1024 void InitCOM(); //初始化串口 void OpenPort(); //打开串口 void ClosePort(); //关闭串口,释放串口资源 void interrupt far asyncint(...); void interrupt(*asyncoldvect)(...); unsigned char Buffer[BUFFLEN]; int buffin=0; int buffout=0; //unsigned ...
https://www.eeworm.com/dl/980711.html
下载: 2
查看: 7112

技术资料 利用I/O读鼠标的程序

利用I/O口读鼠标的数据(采用INT0中断)
https://www.eeworm.com/dl/971978.html
下载: 2
查看: 6655

技术资料 pic675中断

pic16f675的中断程序 C语言写的int中断响应、
https://www.eeworm.com/dl/977131.html
下载: 4
查看: 8010

技术资料 51摇摇棒C代码

外部中断方式INT0显示;取模方式:纵向取模、字节倒序
https://www.eeworm.com/dl/966393.html
下载: 9
查看: 3192

技术资料 Rosenberger_SMA AD封装

Altium Designer 的 SMA INT封装库,16版本以上测试可用
https://www.eeworm.com/dl/827865.html
下载: 5
查看: 8700

汇编语言 只要你想听CD,它在任何时候(DOS下,游戏下都可以)用鼠标激活,鼠标控制,为你播放.并提供了选曲和暂停功能,这为光驱上无直接播放建的朋友提供了莫大的方便.该程序思路巧妙,利用INT 33H的现有鼠标

只要你想听CD,它在任何时候(DOS下,游戏下都可以)用鼠标激活,鼠标控制,为你播放.并提供了选曲和暂停功能,这为光驱上无直接播放建的朋友提供了莫大的方便.该程序思路巧妙,利用INT 33H的现有鼠标功能,巧妙扩展,达到任何条件下激活的能力! ...
https://www.eeworm.com/dl/644/122424.html
下载: 26
查看: 1128

单片机编程 PCA9542A 2channel I2C bus mult

The PCA9542A is a 1-of-2 bidirectional translating multiplexer, controlled via the I2C-bus.The SCL/SDA upstream pair fans out to two SCx/SDx downstream pairs, or channels.Only one SCx/SDx channel is selected at a time, determined by the contents of theprogrammable control register. Two interrupt inp ...
https://www.eeworm.com/dl/502/31006.html
下载: 63
查看: 1110

Java书籍 package query public class LinkQuery { private Node front private Node vear public Link

package query public class LinkQuery { private Node front private Node vear public LinkQuery() { this.front=null this.vear=null } public void add(int i) { Node newNode=new Node(i) if(vear==null && front==null) { vear=newNode front=newNode return } vear.next=ne ...
https://www.eeworm.com/dl/656/317846.html
下载: 24
查看: 1098

VC书籍 C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.141

C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.1415926 /* 宏常量,在稍后章节再详解 */ #define circle(radius) (PI*radius*radius) /* 宏函数,圆的面积 */ /* 将比较数值大小的函数写在自编include文件内 */ int show_big_or_small (int a,int ...
https://www.eeworm.com/dl/686/134069.html
下载: 41
查看: 1111