代码搜索:数字传感器
找到约 10,000 项符合「数字传感器」的源代码
代码结果 10,000
www.eeworm.com/read/445787/7590339
asm main.asm
ORG 0000H
AJMP START
ORG 0100H
START:
MOV P1, #0 ;消隐
MOV R0, #8
MOV R1, #0
LOOP: LCALL DISPLAY
DJNZ R0, LOOP ;判断8位数字是否送完
AJMP START
DISPLAY:
MOV DPTR, #YOUNUMBER ;寻找显示的数字
www.eeworm.com/read/438832/7725817
sh ex61.sh
#!/bin/bash
# 将阿拉伯数字转化为罗马数字
# 范围: 0 - 200
# 比较粗糙, 但可以正常工作.
# 扩展范围, 并且完善这个脚本, 作为练习.
# 用法: roman number-to-convert
LIMIT=200
E_ARG_ERR=65
E_OUT_OF_RANGE=66
if [ -z "$1" ]
then
echo "Usage: `bas
www.eeworm.com/read/299440/7856985
c 1_pro.c
#include
int cnt,sum;
void countValue()
{
int i,qw,bw,sw,gw;
for(i=5000;i>=1000;i--)
{
qw=i/1000; /*求四位数的千位数字*/
bw=i%1000/100; /*求四位数的百位数字*/
www.eeworm.com/read/397229/8061918
asm c.asm
OUTBIT equ 8002h ; 位/列控制口
OUTSEG equ 8004h ; 段控制口
IN_KEY equ 8001h ; 键盘行读入口
data segment
LEDBuf db 6 dup(?) ; 显示缓冲区
Num db 1 dup(?) ; 显示的数字
DelayT db 1 dup(?) ;显示LEDBuf区数字的重复次
www.eeworm.com/read/242302/13048238
html 13436.html
Re: 请问如何能够将 *.mdb中的一个栏位中的数字减一?
Re: 请问如何能够将 *.mdb中的一个栏位中的数字减一?
www.eeworm.com/read/242302/13062408
html 6891.html
那可否中途停止程式并储存进度呢?又,理论上数字范围极限应为何?
那可否中途停止程式并储存进度呢?又,理论上数字范围极限应为何?
www.eeworm.com/read/242302/13068119
html 13434.html
请问如何能够将 *.mdb中的一个栏位中的数字减一?
请问如何能够将 *.mdb中的一个栏位中的数字减一?
www.eeworm.com/read/242302/13071003
html 13517.html
Re: 请问如何能够将 *.mdb中的一个栏位中的数字减一?
Re: 请问如何能够将 *.mdb中的一个栏位中的数字减一?
www.eeworm.com/read/306452/13744841
plg 1.plg
礦ision3 Build Log
Project:
C:\Documents and Settings\JiangShuai\桌面\时钟\数字钟\数字钟\proteus图\1.uv2
Project File Date: 03/14/2008
Output:
Build targe
www.eeworm.com/read/264076/11330554
cpp 删数.cpp
#include
#include
#include
bool* del; // del 数组表示某数是否已被删除
int length; // 为待删数字总长度 ...
char num[256]; // 存放待删除数字,最大长度256
int k; // 为欲删除的个数
void read_file();
i