代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/484284/6584264

cpp algo2-3.cpp

//文件名:algo2-3.cpp #include #include typedef char ElemType; typedef struct DNode //定义双链表结点类型 { ElemType data; struct DNode *prior; //指向前驱结点 struct DNode *next; //指向后继结
www.eeworm.com/read/484285/6584265

cpp algo2-4.cpp

//文件名:algo2-4.cpp #include #include typedef char ElemType; typedef struct LNode //定义单链表结点类型 { ElemType data; struct LNode *next; } LinkList; void InitList(LinkList
www.eeworm.com/read/484058/6590015

c music.c

#include unsigned char t5hz; unsigned char t7hz; unsigned int tcnt; bit stop; bit flag; void main(void) { //unsigned char i,j; TMOD=0x02; TH0=
www.eeworm.com/read/484154/6591441

py fibonacci.py

def fibonacci(): i=j=1 while True: r,i,j=i,j,i+j yield r for rabbits in fibonacci(): print rabbits , if rabbits > 100: break
www.eeworm.com/read/484178/6592029

py fibonacci.py

def fibonacci(): i=j=1 while True: r,i,j=i,j,i+j yield r for rabbits in fibonacci(): print rabbits , if rabbits > 100: break
www.eeworm.com/read/483918/6597457

cpp c语言成绩记录查询系统.cpp

#include #include #include #include #define LEN sizeof(info) typedef struct info { long int num; char name[20]; int score; info *
www.eeworm.com/read/483488/6598089

h 1602.h

/***************************************************************************** lcd1602 *****************************************************************************/ #include
www.eeworm.com/read/483496/6598269

m rbf_s.m

function [y,out,m,b,w,ff,gg]=RBF_s(center,Data) x=Data(:,1:end-1); x=x'; [p1,p2]=size(x); y=Data(:,end); y=y'; b=center(:,1:end-1); b=b'; [m2,k]=size(b); w=center(:,end); w=w'; for i=1:p1
www.eeworm.com/read/483504/6598354

m betap.m

function bp = betap(x,a,b) %自变量的值:x %第一个参数:a %第二个参数:b %自变量取x值时的不完全贝塔函数值:gp format long; if a
www.eeworm.com/read/483608/6599586

v loop2.v

module loop2; integer i; initial begin i=0; while(i