代码搜索:while

找到约 10,000 项符合「while」的源代码

代码结果 10,000
www.eeworm.com/read/403329/11518951

bak asm2.txt.bak

#include unsigned char t5hz; unsigned char t7hz; unsigned int tcnt; bit stop; bit flag; void main(void) { unsigned char i,j; TMOD=0x02; TH0=0x06; TL0=0x06; ET0=1;
www.eeworm.com/read/403319/11519178

lst sms.lst

C51 COMPILER V7.02a SMS 08/28/2005 17:10:47 PAGE 1 C51 COMPILER V7.02a, COMPILATION OF MODULE SMS OBJECT MODULE PLACED IN sm
www.eeworm.com/read/403217/11520648

h delay.h

void DelayMs(unsigned int number) { unsigned char temp; for(;number!=0;number--) { for(temp=112;temp!=0;temp--) { } } } /* void Delay_us(unsigned char nUs)//微秒级延时
www.eeworm.com/read/403166/11521254

c cc1.c

/* * Simple C Compiler * Based on Small C/386 * * Copyright (c) 2003 Charles Childers * Copyright (c) 1998 H. T. Walheim * Copyright (c) 1982, 1983, 1985, 1988 J. E. Hendrix */ #include
www.eeworm.com/read/403166/11521255

c cc2.c

/* ** Small-C Compiler -- Part 2 -- Front End and Miscellaneous. ** Copyright 1982, 1983, 1985, 1988 J. E. Hendrix ** Copyright 1998 H T Walheim ** All rights reserved. */ #include #include
www.eeworm.com/read/403011/11524498

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/403009/11524803

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/402884/11526683

c 数码管02.c

#include unsigned char i; unsigned char j; unsigned char m; unsigned char n; unsigned char p; unsigned char code d1[]={0x9F,0x25,0x0D,0x99,0x49,0x41,0x1F,0x01,0x00}; unsigned char c
www.eeworm.com/read/402883/11526694

c 数码管03.c

#include unsigned char i; unsigned char code d1[]={0x9F,0x25,0x0D,0x99,0x49,0x41,0x1F,0x01,0x00}; unsigned char code d2[]={0x7F,0xBF,0xDF,0xEF,0xF7,0xFB,0xFD,0xFE,0x00}; void delay(uns
www.eeworm.com/read/402783/11527359

c i2c.c

/********************************************/ /* I2C.c: implementation of the I2C API. */ /* Author : qzsu */ /* Time : 2006-08-21 */ /********************************