代码搜索:计数器电路
找到约 10,000 项符合「计数器电路」的源代码
代码结果 10,000
www.eeworm.com/read/174605/9580301
cpp p1-84.cpp
#include
//使用静态变量的计数器函数
count1()
{
//声明静态变量i,并置初值为0。i在count()中局部可见
static int i=0;
return(++i);
}
//使用局部变量的计数器函数
count2()
{
int i=0;
return(++i);
}
www.eeworm.com/read/276983/10690733
cpp p1-84.cpp
#include
//使用静态变量的计数器函数
count1()
{
//声明静态变量i,并置初值为0。i在count()中局部可见
static int i=0;
return(++i);
}
//使用局部变量的计数器函数
count2()
{
int i=0;
return(++i);
}
www.eeworm.com/read/272824/10942989
cpp p1-84.cpp
#include
//使用静态变量的计数器函数
count1()
{
//声明静态变量i,并置初值为0。i在count()中局部可见
static int i=0;
return(++i);
}
//使用局部变量的计数器函数
count2()
{
int i=0;
return(++i);
}
www.eeworm.com/read/466246/7041522
h timer.h
#ifndef __TIMER_H
#define __TIMER_H
extern volatile uchar Cnt10us; //延时10us定时器计数器
extern volatile uchar Cnt1ms; //延时10ms定时器计数器
extern void Timer_Init(void);
extern void Delay1ms
www.eeworm.com/read/199451/7850825
cpp p1-84.cpp
#include
//使用静态变量的计数器函数
count1()
{
//声明静态变量i,并置初值为0。i在count()中局部可见
static int i=0;
return(++i);
}
//使用局部变量的计数器函数
count2()
{
int i=0;
return(++i);
}
www.eeworm.com/read/144307/12803157
cpp complier.cpp
#include
#include
#include
#define true 1
#define false 0
#define N 100 //确定缓冲区的最大容量
int IN=0; //I表计数器
int CN=0; //C表计数器
int Len=0;//纪录待编译程序的行号
bool GetCh
www.eeworm.com/read/143457/12874663
cpp p1-84.cpp
#include
//使用静态变量的计数器函数
count1()
{
//声明静态变量i,并置初值为0。i在count()中局部可见
static int i=0;
return(++i);
}
//使用局部变量的计数器函数
count2()
{
int i=0;
return(++i);
}
www.eeworm.com/read/242302/13072307
html 8446.html
在表单上直接播放抓来的GIF动画,而不是用计数器自已做的!
在表单上直接播放抓来的GIF动画,而不是用计数器自已做的!
www.eeworm.com/read/304409/13794889
asm head.asm
WP EQU P1.0
SCL EQU P1.1
SDA EQU P1.2
DIR EQU P1.7
ERROR BIT 00H
COUNTER DATA 7FH ;数据线上的位计数器
COUNTER1 DATA 7EH ;延时计数器
RI2CDATA DATA
www.eeworm.com/read/186480/6334613
cpp p1-84.cpp
#include
//使用静态变量的计数器函数
count1()
{
//声明静态变量i,并置初值为0。i在count()中局部可见
static int i=0;
return(++i);
}
//使用局部变量的计数器函数
count2()
{
int i=0;
return(++i);
}