-
All calculators in one excel sheet
All calculators in one excel sheet
- 2023-08-03 00:50:03下载
- 积分:1
-
think like a computer scientist
think like a computer scientist
- 2022-03-17 21:32:27下载
- 积分:1
-
QuartusII英文原版教材!想学习QuartusII的朋友和正在使用的人都可以作为参考!...
QuartusII英文原版教材!想学习QuartusII的朋友和正在使用的人都可以作为参考!-QuartusII original English teaching materials! Want to learn QuartusII friends and is being used can serve as a reference!
- 2022-08-07 12:35:06下载
- 积分:1
-
许多人在掌握Java的基本知识后,都希望通过进行一系列的课程设计来巩固和提高Java编程技术,本书就是针对这一目的编写。本书不仅可以作为电子信息专业Java课程...
许多人在掌握Java的基本知识后,都希望通过进行一系列的课程设计来巩固和提高Java编程技术,本书就是针对这一目的编写。本书不仅可以作为电子信息专业Java课程设计的教材,也适合作为撰写毕业论文的参考书。
本书以15个课程设计题目为框架,从各个方面介绍了Java在应用系统开发和网络开发中的技巧。各个课程设计题目相互独立,可以从任何一个课程设计题目开始阅读本书。每个课程设计题目都给出了详细的设计步骤,包括设计内容、总体设计、具体设计、软件发布、课程设计作业等。本书全部程序代码可由前言中指定网站下载。
-At lot of people grasp the basic knowledge of Java, after all hope that through a series of courses designed to consolidate and enhance Java programming techniques, this book is prepared for this purpose. This book not only as an electronic information design major Java curriculum materials, also suitable as a reference book to write the thesis.
15 in the book entitled Designed curriculum framework, from the introduction of all aspects of application development in Java and web development skills. Designed curriculum subject in all independent of each other, you can design a course from any subject to read the book start. Designed curriculum for each subject are given in detail the design steps, including the design of content, d
- 2023-02-22 07:30:03下载
- 积分:1
-
设计模式一直被认为是程序设计的高级阶段,一个人,编程到了一定的程度,一定得看设计模式...
设计模式一直被认为是程序设计的高级阶段,一个人,编程到了一定的程度,一定得看设计模式-Design pattern has been regarded as the program design, a higher stage, to a certain extent, programming design mode must see
- 2022-06-01 16:54:30下载
- 积分:1
-
关于keil c 软件的入门教程,图文并茂的介绍了keil c的使用方法...
关于keil c 软件的入门教程,图文并茂的介绍了keil c的使用方法-Keil c on entry software tutorials introduce graphic illustrations of the use of keil c
- 2022-01-26 04:49:24下载
- 积分:1
-
ORACLE.10G入门与实践.pdf,初学者入门必须
ORACLE.10G入门与实践.pdf,初学者入门必须-ORACLE.10G entry and practice. Pdf, beginners entry must be
- 2023-07-17 18:15:06下载
- 积分:1
-
Introduction to the classic C language source code, which includes many practica...
C语言入门的经典源代码,里面包括了许多实用的例子,可以快迅入门-Introduction to the classic C language source code, which includes many practical examples, you can Alerts Getting Started
- 2022-08-03 18:18:13下载
- 积分:1
-
Visual C++ 串口通信技术与工程实践
Visual C++ 串口通信技术与工程实践-Visual C++ Serial communications technology and engineering practice
- 2022-01-25 23:44:02下载
- 积分: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