代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/468607/6985851
c sh102.c
#include
#define uint unsigned int
sbit gate1=P2^0; // 定义P2-0口
sbit gate2=P2^1; // 定义P2-1口
sbit gate3=P2^2; // 定义P2-2口
sbit gate4=P2^3; // 定义P2-3口
void main(v
www.eeworm.com/read/468607/6985854
c sh101.c
#include
sbit gate=P2^0; // 定义P2-0口
void main(void)
{
unsigned int i,j;
while(1)
{
for(i=1000;i>0;i--)
for(j=1000;j>0;j--); // 双重循环,延时约1秒
gate=!gate; // 对P-0口取反,控制小灯的
www.eeworm.com/read/468729/6987003
cpp lexicalforc.cpp
#include
#include
#include
/*姓名: 赵晓东
*学号:063372
*班级:RJ010606*/
using namespace std;
string keyWord[10] = {"else", "if", "int", "return", "void", "while"}; /
www.eeworm.com/read/468729/6987004
txt input.txt
/* this is a test program*/
void main(){
int length;?
length = 123;
int width;
width = 456abc;
int height23;
int square;
int girth = (length + width)*2;
if(length != wid
www.eeworm.com/read/468766/6987574
c icc2.c
/*------------------------ 例程1:通用IC卡读写程序 -------------------------*/
/*说明:该例程的功能是对多种IC卡(包括SIM4418/28、SIM4432/42、ATMEL16K卡)进行 读、写以及比较密码的操作*/
#include "HNCC.H"
xdata unsigned char m,n,co;
void
www.eeworm.com/read/468201/6994946
lst gg.lst
C51 COMPILER V8.05a GG 09/29/2007 12:19:38 PAGE 1
C51 COMPILER V8.05a, COMPILATION OF MODULE GG
OBJECT MODULE PLACED IN gg.
www.eeworm.com/read/468201/6994956
c gg.c
//proteus仿真论坛:proteus.5d6d.com
#include
#include
#include
sbit DI=P2^2; // 数据\指令 选择
sbit RW=P2^1; // 读\写 选择
sbit E=P2^0; // 读\写使能
sbit CS1=P2^4; // 片选1
sbit C
www.eeworm.com/read/468329/6996722
cpp textin1.cpp
// textin1.cpp -- reading chars with a while loop
#include
int main()
{
using namespace std;
char ch;
int count = 0; // use basic input
cout
www.eeworm.com/read/467254/7008508
c 30-13.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //头文件中没有定义的IO就要自己来定义了
sbit P11 = P1^1;
sb
www.eeworm.com/read/467021/7013617
txt 13.1.6单片机多机通信.txt
#include
#define uchar unsigned char
#define SLAVE 0x02
#define NUMB 16
uchar idata rbuffer[16]
uchar idata tbuffer[16]={“master transmit”}
void error(void)
{
SBUF=0xff;
whi