代码搜索:彩条显示

找到约 10,000 项符合「彩条显示」的源代码

代码结果 10,000
www.eeworm.com/read/233636/14144640

c 25点阵式led“0-9”数字显示技术.c

#include //25. 点阵式LED"0-9"数字显示技术 unsigned char code tab[]={0xfe,0xfd,0xfb,0xf7,0xef,0xdf,0xbf,0x7f}; unsigned char code digittab[10][8]={   {0x00,0x00,0x3e,0x41,0x41,0x41,0x3
www.eeworm.com/read/229675/14325490

txt 10.2.1 六位数码管时钟显示.txt

ORG 0000H LJMP START ORG 0003H RETI ORG 000BH LJMP INTT0 ORG 0013H RETI ORG 001BH LJMP INTT1 ORG 0023H RETI ORG 002BH RETI START: MOV R0, #70H MOV R7
www.eeworm.com/read/126803/14402018

sql 选择显示图书价格不小于20的行.sql

--选择显示图书价格不小于20的行 select * from titles where not price < 20
www.eeworm.com/read/126803/14402022

sql 显示所有图书名包含computer关键字的行.sql

-- 显示所有图书名包含computer关键字的行 select * from titles where title like '%computer%'
www.eeworm.com/read/126803/14402023

sql 显示titles表的type字段中所有不同的类型.sql

/*显示titles表的type字段中所有不同的类型*/ select distinct type from titles
www.eeworm.com/read/126803/14402030

sql 显示authors表中的部分字段并重新命名.sql

/*显示Authors表中的 au_lname,au_fname,phone和address字段 并重新命名*/ select au_lname as LastNname, au_fname as FirstName, phone as Telephone, address as HomeAddress from authors