代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/273547/10911351

pl0 test.pl0

/* Test.PL0 */ Program abc; Integer x,y,z; Real a,b; Procedure ab(Var m,n:Integer;t:Real); Begin t:=n+m; If m>n then n:=m else t:=m; While n
www.eeworm.com/read/272978/10934285

sh calc.sh

#!/bin/bash i=0; while [ $i -lt 10000 ] do ((i++)) done echo $i
www.eeworm.com/read/272969/10934756

cpp reversion.cpp

#include"chainbelth.h" void reversion(linklist &l) { linklist p,q,r; p=NULL; r=l->next; while(r!=NULL) { q=r; r=r->next; q->next=p; p=q; } r=p; l->next=r; }
www.eeworm.com/read/272454/10957036

bak 8.bak

main( ) { int a[11] , l , h , m , y , x , *p ; for ( y=1 ; y
www.eeworm.com/read/272201/10965838

m tianchongj.m

%编写 J矩阵的主程序 J=zeros(720,6); N=6;y=1; for m=1:N a(m)=m end p=0;p=p+1; for m=1:N J(p,m)=a(m) end x=0 y=y+1 exchange while x~=0 p=p+1 for m=1:N J(p,m)=a(m) end
www.eeworm.com/read/272201/10965866

m prim.m

T=[];l=0;%l记录T的列数 q(1)=-1; for i=2:n p(i)=1;q(i)=D(i,1); end k=1; while 1 if k>=n disp(T); break; else min=inf; for i=2:n if q(i)>0
www.eeworm.com/read/417462/10988973

c fstreql.c

int fstreql(char far *str1, char far *str2) { while ((*str1 == *str2) && (*str1)) { str1++; str2++; } return((*str1 == NULL) && (*str2 == NULL)); }
www.eeworm.com/read/417421/10990662

txt test1.txt

program example4; var A,B,C,D:integer; begin A:=1; B:=5; C:=3; D:=4; while AD do if A=1 then C:=C+1 else while A
www.eeworm.com/read/270960/11018077

cpp charcat1.cpp

/* The following code example is taken from the book * "The C++ Standard Library - A Tutorial and Reference" * by Nicolai M. Josuttis, Addison-Wesley, 1999 * * (C) Copyright Nicolai M. Josuttis 19
www.eeworm.com/read/270917/11019769

c 8atk.c

#include "math.h" double atk(x,y,n,t,eps) int n; double t,eps,x[],y[]; { int i,j,k,m,l; double z,xx[10],yy[10]; z=0.0; if (n