A design about 8051 (running at 12MHz) based system with 3 7-Seg displays and two buttons to implement the following functions. 1. When press the + button, the display C = A+B. 2. When press the button, the display C = A - B. “A” and “B” are 8-bit inputs when “C” is 9-bit output.
上传时间: 2015-05-05
上传用户:guoxiy
用于bq76930的参数计算,原理图引脚说明,并且寄存器的操作说明
标签: bq76930
上传时间: 2016-08-10
上传用户:也一样请求
介绍了CCS5.5的基本使用,仿真与下载,适用于初学人员
上传时间: 2017-06-12
上传用户:psupgpv
题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少? //这是一个菲波拉契数列问题 public class lianxi01 { public static void main(String[] args) { System.out.println("第1个月的兔子对数: 1"); System.out.println("第2个月的兔子对数: 1"); int f1 = 1, f2 = 1, f, M=24; for(int i=3; i<=M; i++) { f = f2; f2 = f1 + f2; f1 = f; System.out.println("第" + i +"个月的兔子对数: "+f2); } } } 【程序2】 题目:判断101-200之间有多少个素数,并输出所有素数。 程序分析:判断素数的方法:用一个数分别去除2到sqrt(这个数),如果能被整除, 则表明此数不是素数,反之是素数。 public class lianxi02 { public static void main(String[] args) { int count = 0; for(int i=101; i<200; i+=2) { boolean b = false; for(int j=2; j<=Math.sqrt(i); j++) { if(i % j == 0) { b = false; break; } else { b = true; } } if(b == true) {count ++;System.out.println(i );} } System.out.println( "素数个数是: " + count); } } 【程序3】 题目:打印出所有的 "水仙花数 ",所谓 "水仙花数 "是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个 "水仙花数 ",因为153=1的三次方+5的三次方+3的三次方。 public class lianxi03 { public static void main(String[] args) { int b1, b2, b3;
上传时间: 2017-12-24
上传用户:Ariza
TMS320C6455烧写程序,其中包含完整程序,操作说明
标签: C6455 320C 6455 TMS 320 烧写程序
上传时间: 2018-10-30
上传用户:qweasdzxc111
keil4破解安装手册,资料有详细的操作说明。
上传时间: 2019-01-30
上传用户:info2019
日本大金变频液压站说明书,包括设置说明和操作说明
上传时间: 2019-02-20
上传用户:idea1120
rX8025Tdatasheet非常使用的手册,很详细,也有I2C的操作说明
标签: Tdatasheet 8025 RX
上传时间: 2019-09-04
上传用户:landerwc
矢量网络分析仪实用书,讲解实际应用操作说明。
标签: 矢量网络分析仪
上传时间: 2019-10-10
上传用户:libin30312
可以应用到IAR EWARM-EV V5.30 使用方法: 1:首先用iarid.exe产生ID 2:使用iarkg.exe产生lic文件,如:iarkg 0x12345>crack.txt 注意:ID要大写哟。
上传时间: 2020-05-01
上传用户:shuian_10