代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/464332/7165348
c jz.c
#include "mb95100.h"
extern unsigned char keybuf;
unsigned int press[3],voltpress[3];
_YLJZ()
{
unsigned char num=0;
unsigned char x=0;
unsigned char buf[5]={0};
while(_Judgekey()!=0)
{
whi
www.eeworm.com/read/464279/7166924
sh ex-11-08_break.sh
#!/bin/sh
# Chapter 11 - Infinite loops
# This example demonstrates how the while loop can be used to
# gather user input. The process function has been added to
# demonstrate the execution of the cas
www.eeworm.com/read/464279/7166994
sh ex-13-05_read.sh
#!/bin/sh
# Chapter 13 - The read command
# This example demonstrates the use of the read command to read
# lines from a file
while read LINE
do
case $LINE in
*root*) echo $LINE ;;
esac
done
www.eeworm.com/read/464193/7167776
c tempad.c
#include "Define1.h"
//******************************************************************
//*************************************************************************
//按键测试子过程(A/D转换方式进行)
uchar T
www.eeworm.com/read/463983/7171168
cpp 深度优先.cpp
int visited[MAXVEX],
void dfs(adjlist adj,int v)
{
int i;
struct edgenode *p;
for(i=0;i
www.eeworm.com/read/463893/7173762
c example.c
#include
void main(void)
{ bit s=0;
xdata unsigned char memory[3];
unsigned char j, k
TMOD=0x20;
TL1=0xfd;
TH1=0Xfd;
SCON=0X50;
PCON=0x00;
TR1=1;
www.eeworm.com/read/463893/7173815
c interrrupt.c
#pragma small
#include
unsigned char a;
sbit P10=P1^0;
void initmpu(void)
{
TMOD=0x20;
TL1=0xfd;
TH1=0xfd;
SCON=0x50;
PCON=0x00;
IE=0x90;
TR1=1;
}
void
www.eeworm.com/read/463865/7174524
c utils.c
#include "def.h"
extern int SerialRxReady(void);
extern char SerialRxKey(void);
unsigned short ntohs(unsigned short s)
{
return (s >> 8) | (s
www.eeworm.com/read/463510/7179505
c ttx.c
#include //异步串口接收程序
void delay() //延时在1200波特率时的一个位长
{
unsigned char y=0x43;
while(y--);
}
void main() //主函数
{
unsigned char zj; //收到的数值缓存变量
unsign
www.eeworm.com/read/463509/7179506
c ck.c
#include //异步串口发射程序//
void delay() //延时函数,延时1200波特时的位长度//
{
unsigned char w=0x43;
while(w--);
}
void output(unsigned char n)//发射数据函数,入口为要发射的数//
{