-
visual c++编程技术,介绍编程中的技巧。建议初学者学习参考。...
visual c++编程技术,介绍编程中的技巧。建议初学者学习参考。-visual programming technology, programming skills. Study recommends beginners reference.
- 2022-01-24 18:50:21下载
- 积分:1
-
from various VC source were chosen, some of the more useful example of VC
从各种VC源码中精选出来,比较有用的一些VC例子-from various VC source were chosen, some of the more useful example of VC
- 2022-04-07 15:58:24下载
- 积分:1
-
di yi ci
di yi ci
- 2022-10-15 17:05:05下载
- 积分:1
-
Windows via CC++.chm, 很经典的windows c++书籍,由Jeffrey Richter and Christophe Nasarre合...
Windows via CC++.chm, 很经典的windows c++书籍,由Jeffrey Richter and Christophe Nasarre合作编写。-classic windows c++ development book
- 2022-01-26 00:20:06下载
- 积分:1
-
基于vc++的数据挖掘书籍,适合于了解数据原理。
基于vc++的数据挖掘书籍,适合于了解数据原理。-Vc++-based data mining books, suitable for the principle of understanding the data.
- 2022-02-05 17:25:50下载
- 积分:1
-
基于模糊数学理论的模糊识别程序用VB编写,和技术。
用VB编写的基于模糊数学原理的模糊识别程序,还有相应的例子-VB prepared based on fuzzy math theory of fuzzy identification procedures, and the corresponding example
- 2022-01-20 23:45:50下载
- 积分:1
-
宇宙发展史及其天体理论ppt 有精美星云照片
宇宙发展史及其天体理论ppt 有精美星云照片-history of the development of the universe and theoretical astrophysics ppt photos are exquisitely Nebula
- 2022-07-10 02:03:49下载
- 积分:1
-
学习无线java是谁想要创建应用程序的java开发者…
Learning Wireless Java is for Java developers who want to create applications for the
Micro Edition audience using the Connected, Limited Device Configuration and the
Mobile Information Device Profile (MIDP). These APIs specifically for devices such as
mobile phones and pagers, allowing programmers to create MIDlet applications. This
book offers a solid introduction to J2ME and MIDP, including the javax.microedition
classes, as well as classes surrounding the features of the various platforms that the J2ME
supports.
- 2022-03-24 11:18:26下载
- 积分:1
-
National Computer Rank Examination II C language related information, it is the...
全国计算机二级C语言等级考试相关资料,很全的。-National Computer Rank Examination II C language related information, it is the whole.
- 2023-02-11 09:55:05下载
- 积分:1
-
时钟闪烁移动
#include"reg51.h"
sbit SET_K = P1^0; //设置
sbit PLUS_K = P1^1;//左移加1
sbit SHIFT_K = P1^2;//左移
sbit CHANGE_K = P1^3;//切换 年、月、日
bit SecFlag = 0;
bit FlashFlag = 0;
unsigned int Counter = 0;
unsigned char Led0,Led1,Led2,Led3,Led4;
unsigned char Shift;
code unsigned char LedSeg[10] = {0x3f,0x06,0x5B,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};
void Time0() interrupt 1 // 0: EX0 1:Time0 2: EX1 3: Time1,4:serial 中断
{
static unsigned int IntCnt;
TH0 = 0xfc;
TL0 = 0x66;
if(++IntCnt > 1000)
{
IntCnt = 0;
SecFlag = 1;
}
switch(++Counter%5) //显示功能
{
case 0:
- 2022-03-02 21:20:39下载
- 积分:1