-
软件文档也算是比较好的一篇了。但是还是有一些不足之处,敬请见谅...
软件文档也算是比较好的一篇了。但是还是有一些不足之处,敬请见谅-Software Documentation also be regarded as a relatively good one. But there are still some inadequacies, please forgive me
- 2022-01-20 23:14:31下载
- 积分:1
-
计算机科学经典著作之一:c++的异常处理,包括工程中的疑问,编程问题和解决方法。...
计算机科学经典著作之一:c++的异常处理,包括工程中的疑问,编程问题和解决方法。-one computer science classics : c anomalies, including the construction of doubt, programming problems and solutions.
- 2022-04-22 09:15:15下载
- 积分:1
-
Vista rally技术之pnp
Vista rally技术之pnp-x的spec
是upnp的扩展
很有用的拉-Vista rally technology pnp-x of the spec is an extension of UPnP useful la
- 2023-06-02 00:40:04下载
- 积分:1
-
Philips ARM资料,包括了arm开发的
Philips ARM资料,包括了arm开发的-Philips ARM information, including the various aspects of the development arm
- 2023-08-21 19:05:03下载
- 积分:1
-
前段时间参加了信息产业部的项目经理培训班,做为结业我写了一片论文,希望同行多加指正...
前段时间参加了信息产业部的项目经理培训班,做为结业我写了一片论文,希望同行多加指正-earlier participated in the Ministry"s project manager training courses, as passing, I wrote a thesis, hope more peer correction
- 2022-01-30 12:36:05下载
- 积分:1
-
Make their own browser? Have not made a mistake? Do not say such a monster, like...
自己做浏览器?有没有搞错?不要说像IE这样的庞然大物,就是小巧的Opera,我们大多数普通人也决计搞不出来。但如果你的机器里装有VB5.0专业版,那么事情就好办多了,想试试吗?那好,Let`s go!
-Make their own browser? Have not made a mistake? Do not say such a monster, like IE, that is compact Opera, most of us have decided to engage ordinary people do not come out. However, if your machine equipped with VB5.0 Professional Edition, then more than can be easily handled, and would like to try it? Well, Let `s go!
- 2023-06-07 00:10:03下载
- 积分:1
-
Linux下的Vim操作以及面向对象和面向过程的简单介绍
Linux下的Vim操作以及面向对象和面向过程的简单介绍-Vim under Linux operation and object-oriented and process-oriented brief
- 2023-05-25 02:35:04下载
- 积分:1
-
打开一个研究报告,需求分析阶段
1研究开题报告
2 需求分析阶段--需求说明书-opened a research report that demand analysis phase two-- demand brochures
- 2022-08-05 16:45:42下载
- 积分:1
-
模拟电梯运行程序
功能如下:
初始化时,电梯位于第一层;
有键按下时,开始运行
运行时距离相差一层的才被记录并
向上运行时记下...
模拟电梯运行程序
功能如下:
初始化时,电梯位于第一层;
有键按下时,开始运行
运行时距离相差一层的才被记录并
向上运行时记下所有的所在层下面的请求;
向下运行时记下所有的所在层上面的请求;
到达楼层后,关掉指示灯,开门并停留20S
在停留的20S中包含关门的时间
在停留期间,按下关门则立即关门!
假设关门的时间是5S,在这个时间内按下开门时将开门停留
当有人按下该层按钮时,则自按下起停留20S
然后关门继续运行
当到达楼层时,传感器输出高电平
************************************************************
I/O口描述:
模拟方式驱动:
P0口连接DAC0832的数据口
P2_6CS1
P2_7CS2
P2口作为传感器信号输入端
P2_0-P2_41~5
P1口作为来自按键的控制信号输入端
P1_0~P1_6 按键的 1~7
timer1作为定时器定时20S使用 -simulated lift operating procedures following functions : initialization, the lift in the first layer; Press a button, Operation started running away from the difference was only one record to run on all remember when the host layer below the request; remember running down all the host layer above; arrived at the floor, turn off lights come on, 20 remain open and stay in the S 20 S includes closing time during his stay in? closed immediately closed! Assuming the c
- 2022-04-01 16:57:37下载
- 积分:1
-
C 计算器代码
/ * mustafasırrıinci * /
#include < stdio.h >
#include < stdlib.h >
#include < math.h >
int main ()
{
浮 int1 int2,结果 ;
char 操作 ;
printf("CALCULATORn") ;
开始:
printf ("nnEnter 两个整数 please.n") ;
printf("1.integer:") ;
scanf ("%f"& int1) ;
printf("2.integer:") ;
scanf ("%f"& int2) ;
选择:
printf ("nenter 操作的符号。") ;
printf ("naddition: + nsubtraction:-nmultiplication: * ndivision: /nexponention: ^ nto 退出:! n") ;
scanf ("%s"& 操作) ;
虽然 (操作! = "!")
{
switch(operation)
{
案件 "+":
结果 = int1 + int2 ;
打破 ;
案件 "-":
结果 = int1-int2 ;
打破 ;
案件 " *":
结果 = int1 * int2 ;
打破 ;
- 2022-08-13 04:26:33下载
- 积分:1