代码搜索:Digit
找到约 4,689 项符合「Digit」的源代码
代码结果 4,689
www.eeworm.com/read/8474/148282
c ex90.c
//实例90:DS18B20温度检测及其液晶显示
#include //包含单片机寄存器的头文件
#include //包含_nop_()函数定义的头文件
unsigned char code digit[10]={"0123456789"}; //定义字符数组显示数字
unsigned char code Str[]={"Test
www.eeworm.com/read/11251/214671
c 3_06.c
/* 【例3-6】输入10个字符,分别统计出其中空格或回车、数字和其他字符的个数。*/
/* 统计字符,包括空格或回车、数字和其他字符 */
#include
int main(void)
{
int blank, digit, i, other; /* 定义3个变量分别存放统计结果 */
char ch;
www.eeworm.com/read/12173/239809
c ex90.c
//实例90:DS18B20温度检测及其液晶显示
#include //包含单片机寄存器的头文件
#include //包含_nop_()函数定义的头文件
unsigned char code digit[10]={"0123456789"}; //定义字符数组显示数字
unsigned char code Str[]={"Test
www.eeworm.com/read/17194/722650
51
#include
#include
unsigned char data dis_digit;
unsigned char key_s, key_v;
unsigned char code dis_code[11]={0xc0,0xf9,0xa4,0xb0, // 0, 1, 2, 3
0x99,0x92,0x82,0x
www.eeworm.com/read/25885/951845
51
#include
#include
unsigned char data dis_digit;
unsigned char key_s, key_v;
unsigned char code dis_code[11]={0xc0,0xf9,0xa4,0xb0, // 0, 1, 2, 3
0x99,0x92,0x82,0x
www.eeworm.com/read/27624/985733
c 8wmb.c
#include
#include
unsigned char data dis_digit;
unsigned char key_s, key_v;
unsigned char code dis_code[11]={0xc0,0xf9,0xa4,0xb0, // 0, 1, 2, 3
0x99,0x92,0x82,0x
www.eeworm.com/read/28232/996560
c 8wmb.c
#include
#include
unsigned char data dis_digit;
unsigned char key_s, key_v;
unsigned char code dis_code[11]={0xc0,0xf9,0xa4,0xb0, // 0, 1, 2, 3
0x99,0x92,0x82,0x
www.eeworm.com/read/28833/1009213
c clksmg.c
/*P1.4小时调整 P1.5分种调整*/
#include
#include
unsigned char data dis_digit;
unsigned char key_s, key_v;
unsigned char code dis_code[11]={0xc0,0xf9,0xa4,0xb0, //
www.eeworm.com/read/291779/8395920
h ctype.h
#ifndef _CTYPE_H
#define _CTYPE_H
#define _U 0x01 /* upper */ // 该比特位用于大写字符[A-Z]。
#define _L 0x02 /* lower */ // 该比特位用于小写字符[a-z]。
#define _D 0x04 /* digit */ // 该比特位用于数字[0-9]。
#define _C 0x08 /* cntr