搜索结果

找到约 908 项符合 Max-Int 的查询结果

源码 1602数字时钟

# include < reg52.h > # include < 24C02.h> # define uint unsigned int # define uchar unsigned char   sbit rs = P3^5;  //定义lcd1602的rs端 sbit lcden = P3^4;//定义lcd1602的lcden端口 sbit s1 = P3^0;//定义功能键s1 sbit s2 = P3^1;//定义功能键s2 sbit s3 = P3^2;//定 ...
https://www.eeworm.com/dl/512574.html
下载: 4
查看: 17

书籍 oracle查询语句

最近在学习Oracle,对测试人员而言必须掌握两种语言:第一种是DML,数据操纵语言 (Data Manipulation Language) 是SQL语言中,负责对数据库对象运行数据访问工作的指令集,以INSERT、UPDATE、DELETE三种指令为核心,分别代表插入、更新与删除。第二种是:DQL,数据查询语言 (Data Query Language) 是SQL语言中,负责进行 ...
https://www.eeworm.com/dl/513022.html
下载: 2
查看: 28

技术资料 Arduino控制器使用图文教程

Arduino 是一块基于开放原始代码的Simple i/o 平台,并且具有使用类似java,C 语言的开发环境。让您可以快速 使用Arduino 语言与Flash 或Processing…等软件,作出互动作品。Arduino 可以使用开发完成的电子元件例如Switch 或Sensors 或其他控制器、LED、步进电机或其 ...
https://www.eeworm.com/dl/513040.html
下载: 1
查看: 64

技术资料 基于8051+Proteus仿真案例

基础程序设计 01 闪烁的LED  /*  名称闪烁的LED   说明LED按设定的时间间隔闪烁 */  #include<reg51.h>  #define uchar unsigned char  #define uint unsigned int  sbit LED=P1^0;  //延时  void DelayMS(uint x)  {   uchar i;   whil ...
https://www.eeworm.com/dl/513041.html
下载: 2
查看: 33

技术资料 51单片机C语言程序设计Proteus仿真实训

基础程序设计 01 闪烁的LED  /*  名称闪烁的LED   说明LED按设定的时间间隔闪烁  */  #include<reg51.h>  #define uchar unsigned char  #define uint unsigned int  sbit LED=P1^0;  //延时  void DelayMS(uint x) {   uchar i;   w ...
https://www.eeworm.com/dl/513042.html
下载: 2
查看: 31

源码 批处理感知器算法

批处理感知器算法的代码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;     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;     1,2.5,-6.1;1,8.4,3.7;1,4.1,-2.2]; w3=[1,-3.0,-2. ...
https://www.eeworm.com/dl/513321.html
查看: 37

源码 利用栈的基本操作实现将任意一个十进制整数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 ...
https://www.eeworm.com/dl/513582.html
查看: 40

源码 RC4suanfa

RC4对文件加解密 实现RC4对任意文件的加解密,利用控制台对所有文件(中英文文本、符号甚至任意的文件)的加解密。 加解密形式如下:    RC4 -e/-d key inputfile outputfile   说明:对于加密来说,输入文件名就是明文文件,对于解密来说,输入文件名就是密文文件,注意文件读取方式和控制文件 ...
https://www.eeworm.com/dl/513652.html
查看: 11

源码 多项式计算代码

void DFS(MGraph G, int i) {     int j;     visited[i] = TRUE;     printf("%c ",    G.vexs[i]);     for (j=0; j<G.numVertexes; ++j)     {         if (G.arc[i][j]!=INFINITY  &&  !visited[j])       ...
https://www.eeworm.com/dl/513812.html
下载: 1
查看: 4

源码 运动会源代码

#include <malloc.h>       #include <stdio.h>       #include <stdlib.h>       #include <string.h>       #define NULL 0    &nbsp ...
https://www.eeworm.com/dl/513814.html
下载: 2
查看: 9