代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/147331/5731832

h queue.h

/* * Copyright (c) 1991, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permi
www.eeworm.com/read/147304/5733295

m baker.m

function [m,s]=Baker(P,Z) %利用Baker变换产生PN码 aver=[]; N=1024; e1=0.0009; e2=0.0011; L=length(P); leng=1; m=0; s=0; PN=[]; while leng
www.eeworm.com/read/146549/5736762

c mystring.c

//********************************************************************************** //杨屹 2002/08/20 第一版 //字符串操作函数 //联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效) //******************************
www.eeworm.com/read/144216/5752169

t io.t

use Thread; sub counter { $count = 10; while ($count--) { sleep 1; print "ping $count\n"; } } sub reader { my $line; while ($line = ) { print "reader: $line"; } print
www.eeworm.com/read/144212/5753062

perf-script

#!/bin/bash typeset -i m2 m1 M n2 n1 N m n typeset -i MM=5 NN=5 case $# in 0) : ;; 1) MM=$1; NN=$1 ;; 2) MM=$1; NN=$2 ;; *) echo 1>&2 "Usage: $0 [m [n]]" ;; esac EMPTYLINE=: # echo
www.eeworm.com/read/143581/5756969

cpp crt0twin.cpp

#include typedef void (__cdecl *_PVFV)(void); #pragma data_seg(".CRT$XCA") _PVFV __xc_a[] = { NULL }; #pragma data_seg(".CRT$XCZ") _PVFV __xc_z[] = { NULL }; #pragma data
www.eeworm.com/read/142683/5762934

c,v atof.c,v

head 1.1; access; symbols; locks dls:1.1; strict; comment @ * @; 1.1 date 97.09.21.19.27.40; author dls; state Dist; branches; next ; desc @@ 1.1 log @pre-3e code @ text @/* C library - ascii
www.eeworm.com/read/142536/5765467

c string.c

/********** Copyright 1990 Regents of the University of California. All rights reserved. **********/ /* * String functions */ #include "spice.h" #include "stdio.h" #include "misc.h" #include "suf
www.eeworm.com/read/142536/5765470

c mfbcaps.c

/********** Copyright 1990 Regents of the University of California. All rights reserved. Author: -C- 1982 Giles Billingsley **********/ /* * mfbcaps.c * * sccsid "@(#)mfbcaps.c 1.9 9/3/83" *
www.eeworm.com/read/142185/5765872

c root.c

#include "stdio.h" #include "math.h" double root(a,b,eps,f) double a,b,eps,(*f)(); { double f0,f1,c; f0=(*f)(a); while (fabs(a-b)>=eps) { c=(a+b)/2;