代码搜索:键盘程序

找到约 10,000 项符合「键盘程序」的源代码

代码结果 10,000
www.eeworm.com/read/139798/13130970

txt x1226读写程序.txt

#include #include #include "global.h" #define SDA P27 file://数据 #define SCL P26 file://时钟 sbit P26 = P2^6; file://x1226 sbit P27 = P2^7; sbi
www.eeworm.com/read/326240/13154206

asm 电子密码锁程序.asm

;******************************************** ;********* 电子密码锁 ********* ;******************************************** ;********* 2005/12/24
www.eeworm.com/read/326053/13168860

cpp 程序12.3:例题与应用.cpp

/* 程序12.3:例题与应用.cpp:*/ #include //包含头文件 #include //包含头文件 using namespace std; //使用名字空间std class Person //声明基类Person { protected: char cName[20]; int iAge; char cBirt
www.eeworm.com/read/326053/13168890

cpp 程序12.4:例题与应用.cpp

/* 程序12.4:例题与应用.cpp:*/ #include //包含头文件 #include //包含头文件 using namespace std; //使用名字空间std class Person //声明基类Person { protected: string cName; int iAge; string cBirt
www.eeworm.com/read/326053/13168936

cpp 程序14.08:字符的输入.cpp

/* 程序14.8:字符的输入.cpp:*/ #include //包含头文件 #include //包含头文件 using namespace std; //使用名字空间std int main() { ifstream inobj("char.tst"); char cStr[30]; inobj>>cStr; //读出字符串到