代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/396730/8092840
pl0 if_t3.pl0
PROGRAM P1;
CONST I=5, B=20; C=1, D=2;
VAR I; X,Y;
PROCEDURE J;
BEGIN
X:=B
END;
PROCEDURE K;
BEGIN
Y:=C
END;
BEGIN
I:=10;
IF I=10 THEN I:=1 ELSE IF I=101 THEN I:=2 ELSE I:=3 ENDI
www.eeworm.com/read/396663/8096337
h binarytree.h
#include
#include
#include
#include"stack.h"
#include"queue.h"
using namespace std;
struct Level{
int yLevel;
int xIndent;
};
templatec
www.eeworm.com/read/296487/8099637
c sample.c
main()
{
int i,j;
char c[10];
float f;
i=3;
j=4;
while(i>0)
{
if(i
www.eeworm.com/read/296467/8101679
c test44x_testlcd.c
#include "msp430x44x.h"
int Digit[10] = {0X7B,0X12,0X4F,0X1F,0X36,0X3D,0X7D,0X13,0X7F,0X3F};
void Delay(int m)
{
while(m-->0);
}
void clr_lcdmem(void)
{
int i;
for(i = 0;i
www.eeworm.com/read/296307/8110339
c lexyy.c
/*--------------------------------------------------------*/
/* Copyright (c) PSW-soft 1996 */
/* */
/* File: LEXY
www.eeworm.com/read/296284/8112790
asv untitled.asv
a=0;
b=pi/2;
a1=a;
a3=b;
a2=a;
a4=b;
while a3-a1>0.01
f1=-atan(2*sin(2*a1)/(5-cos(2*a1)));
f3=-atan(2*sin(2*a3)/(5-cos(2*a3)));
a2=(a1+a3)/2;
f2=-atan(2*sin(2*a2)/(5-cos(2*a2)));
c1=(f3-f1)
www.eeworm.com/read/296284/8112793
m untitled.m
a=0;
b=pi/2;
a1=a;
a3=b;
a2=a;
a4=b;
while a3-a1>0.01
f1=-atan(2*sin(2*a1)/(5-cos(2*a1)));
f3=-atan(2*sin(2*a3)/(5-cos(2*a3)));
a2=(a1+a3)/2;
f2=-atan(2*sin(2*a2)/(5-cos(2*a2)));
c1=(f3-f1)
www.eeworm.com/read/196123/8114026
c chaoshengboceju.c
#include
#define k1 P3_4
#define csbout P3_5 //超声波发送
#define csbint P3_7 //超声波接收
#define csbc=0.034
#define bg P3_3
unsigned char csbds,op
www.eeworm.com/read/396331/8115034
h insert.h
void insert(Pnode *L,Pnode p)
{
Pnode q,n;
int m;
m=0;
q=(*L)->next;
if(q==NULL)//所插的结点为第一个
{
(*L)->next=p;
}
e