代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/455590/7369825

cpp p1877.cpp

#include #include using namespace std; const int MAXN = 40; int main(){ int a[MAXN*MAXN],f[MAXN*MAXN]; int r,c,N(0); double w; while(cin >> r >> c && (r
www.eeworm.com/read/455588/7369832

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/455588/7369835

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/455392/7372637

c 12_2.c

//并口多机通信主要程序代码: //主机: #include …… sbit hand1=P2^1; //与U1单片机的握手信号 sbit hand2=P2^2; //与U2单片机的握手信号 unsigned char idata group1[10]; unsigned char idata group2[10]; unsigned int
www.eeworm.com/read/455210/7375970

c shuzigundong.c

#include unsigned char seg[8]={0xfc,0x60,0xda,0xf2,0x66,0xb6,0xbe,0xe0}; unsigned char d[8]={0x7f,0xbf,0xdf,0xef,0xf7,0xfb,0xfd,0xfe}; unsigned char b[6]={0xfc,0xfc,0xfc,0xfc,0xfc,0xfc}
www.eeworm.com/read/455033/7379011

hpp heapsort.hpp

template void HeapSort(T *c,long n) { long l,j,r,i; T crit; c--; // on decale de 1 pour que le tableau commence a 1 if( n
www.eeworm.com/read/455011/7380002

cpp gui16.cpp

#include #include "gui16.h" LPDIRECTDRAW lpDD; // DirectDraw object inline WORD RGBto16bit(DDPIXELFORMAT* pixFormat,unsigned char r,unsigned char g,unsigned cha
www.eeworm.com/read/454980/7380673

c infomanager.c

/* Note:Your choice is C IDE */ #include #include #include #include #define N 100 struct student { char num[10]; char name[10]; char tel[11]
www.eeworm.com/read/454938/7381384

c wordcount.c

#include "WordCount.h" ostream& operator
www.eeworm.com/read/454932/7381644

cpp bo4-3.cpp

// bo4-3.cpp 串采用块链存储结构(由c4-3.h定义)的基本操作(16个) void InitString(LString &T) { // 初始化(产生空串)字符串T。另加 T.curlen=0; T.head=NULL; T.tail=NULL; } Status StrAssign(LString &T,char *chars)