代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/297768/7997265

cpp 循环编码.cpp

void xunhuan() { char m[100],mx[100]; char g[100]; int x=0,y=0,n=0; int i=0,j=0; int flag=0; cout
www.eeworm.com/read/197407/7997521

cpp dcount1.cpp

#include int count = 0; void D(int x[], int n) { for (int i = 0; i < n; i += 2) { count++; //for the for x[i] += 2; count++; //for assignment }
www.eeworm.com/read/297739/7998385

c bb1.c

#include unsigned char t5hz; unsigned char t7hz; unsigned int ucount; bit stop; bit flag; main() { unsigned char i,j; TMOD=0x02; TH0=0x06; TL0=0x06; EA=1; ET0=1; while(1) {
www.eeworm.com/read/297703/8002885

v loop2.v

module loop2; integer i; initial begin i=0; while(i
www.eeworm.com/read/197241/8010142

m fact.m

function y = fact(N) % File: FACT.M % CALL: y = fact(N) % This file computes N! (factorial). y = 1; while (N > 0) y = y*N; N = N-1; end; end;
www.eeworm.com/read/297558/8010820

c hh1.c

#include unsigned char dispcode[]={0xc0,0xf9,0xa4,0xb0}; unsigned int i; main() { while(1) { P2=dispcode[2]; for(i=0;i
www.eeworm.com/read/297558/8011003

c ff1.c

#include unsigned char code dispcode[]={ 0xc0,0xf9,0xa4,0xb0}; unsigned char i,j; void delay(void) { for(i=0;i
www.eeworm.com/read/297532/8012323

c jiema.c

#include /***********************/ //---fosc=4MHz---// #define DLY_882US 110 //0.88ms #define DLY_1000US 128 #define DLY_4740US 607 /***********************/ unsigned char Buf
www.eeworm.com/read/297518/8012532

c max5.c

//本程序没有用到tmr2中断,只用了tmr2延时,并且把延时程序嵌入了发送程序中 #include unsigned int SecondCount; char n=0x00; char i=0; char j=0; void chushi() { SSPCON=0x08;//初始化SSPCON寄存器,使时钟F=Fosc/[4*(SSPADD+1)]
www.eeworm.com/read/397854/8018878

c ex1c.c

/*= ex1c.c ===================================================================== * * Copyright (C) 2003, 2004 Nordic Semiconductor * * This file is distributed in the hope that it will be use