搜索结果
找到约 908 项符合
Max-Int 的查询结果
源码 1602数字时钟
# include < reg52.h >
# include < 24C02.h>
# define uint unsigned int
# define uchar unsigned char
&nbsp;
sbit rs = P3^5; &nbsp;//定义lcd1602的rs端
sbit lcden = P3^4;//定义lcd1602的lcden端口
sbit s1 = P3^0;//定义功能键s1
sbit s2 = P3^1;//定义功能键s2
sbit s3 = P3^2;//定 ...
书籍 oracle查询语句
最近在学习Oracle,对测试人员而言必须掌握两种语言:第一种是DML,数据操纵语言
(Data Manipulation Language) 是SQL语言中,负责对数据库对象运行数据访问工作的指令集,以INSERT、UPDATE、DELETE三种指令为核心,分别代表插入、更新与删除。第二种是:DQL,数据查询语言
(Data Query Language) 是SQL语言中,负责进行 ...
技术资料 Arduino控制器使用图文教程
Arduino&nbsp;是一块基于开放原始代码的Simple&nbsp;i/o&nbsp;平台,并且具有使用类似java,C&nbsp;语言的开发环境。让您可以快速&nbsp;使用Arduino&nbsp;语言与Flash&nbsp;或Processing…等软件,作出互动作品。Arduino&nbsp;可以使用开发完成的电子元件例如Switch&nbsp;或Sensors&nbsp;或其他控制器、LED、步进电机或其 ...
技术资料 基于8051+Proteus仿真案例
基础程序设计 01 闪烁的LED&nbsp;
/* &nbsp;名称闪烁的LED&nbsp;
&nbsp;说明LED按设定的时间间隔闪烁
*/&nbsp;
#include<reg51.h>&nbsp;
#define uchar unsigned char&nbsp;
#define uint unsigned int&nbsp;
sbit LED=P1^0;&nbsp;
//延时&nbsp;
void DelayMS(uint x) &nbsp;{&nbsp;
&nbsp;uchar i;&nbsp;
&nbsp;whil ...
技术资料 51单片机C语言程序设计Proteus仿真实训
基础程序设计 01 闪烁的LED&nbsp;
/* &nbsp;名称闪烁的LED&nbsp;
&nbsp;说明LED按设定的时间间隔闪烁&nbsp;
*/&nbsp;
#include<reg51.h>&nbsp;
#define uchar unsigned char&nbsp;
#define uint unsigned int&nbsp;
sbit LED=P1^0;&nbsp;
//延时&nbsp;
void DelayMS(uint x)&nbsp;{&nbsp;
&nbsp;uchar i;&nbsp;
&nbsp;w ...
源码 批处理感知器算法
批处理感知器算法的代码matlab
w1=[1,0.1,1.1;1,6.8,7.1;1,-3.5,-4.1;1,2.0,2.7;1,4.1,2.8;1,3.1,5.0;1,-0.8,-1.3;
&nbsp; &nbsp; 1,0.9,1.2;1,5.0,6.4;1,3.9,4.0];
w2=[1,7.1,4.2;1,-1.4,-4.3;1,4.5,0.0;1,6.3,1.6;1,4.2,1.9;1,1.4,-3.2;1,2.4,-4.0;
&nbsp; &nbsp; 1,2.5,-6.1;1,8.4,3.7;1,4.1,-2.2];
w3=[1,-3.0,-2. ...
源码 利用栈的基本操作实现将任意一个十进制整数N转化为R进制整数。
#include <stdlib.h>
#include<stdio.h>
#include <malloc.h>
#define stack_init_size 100
#define stackincrement 10
typedef struct sqstack
{
int *base;
int *top;
int stacksize;
} sqstack;
int StackInit(sqstack *s)
{
s->base=(int *)malloc(stack_init_size *sizeof(int));
if(!s->base)
return 0;
s->top=s->ba ...
源码 RC4suanfa
RC4对文件加解密
实现RC4对任意文件的加解密,利用控制台对所有文件(中英文文本、符号甚至任意的文件)的加解密。
加解密形式如下:
&nbsp;&nbsp; RC4 -e/-d key inputfile outputfile
&nbsp; 说明:对于加密来说,输入文件名就是明文文件,对于解密来说,输入文件名就是密文文件,注意文件读取方式和控制文件 ...
源码 多项式计算代码
void DFS(MGraph G, int i)
{
&nbsp; &nbsp; int j;
&nbsp; &nbsp; visited[i] = TRUE;
&nbsp; &nbsp; printf("%c ", &nbsp; &nbsp;G.vexs[i]);
&nbsp; &nbsp; for (j=0; j<G.numVertexes; ++j)
&nbsp; &nbsp; {
&nbsp; &nbsp; &nbsp; &nbsp; if (G.arc[i][j]!=INFINITY &nbsp;&& &nbsp;!visited[j])
&nbsp; &nbsp; &nbsp; ...
源码 运动会源代码
#include&nbsp;<malloc.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#include&nbsp;<stdio.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#include&nbsp;<stdlib.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#include&nbsp;<string.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#define&nbsp;NULL&nbsp;0&nbsp;&nbsp; &nbsp;&nbsp ...