代码搜索:continue
找到约 10,000 项符合「continue」的源代码
代码结果 10,000
www.eeworm.com/read/104998/15680165
c pppoe-sniff.c
/***********************************************************************
*
* pppoe-sniff.c
*
* Sniff a network for likely-looking PPPoE frames and deduce the value
* to supply to PPPOE_EXTRA in /
www.eeworm.com/read/104928/15681185
vbs sol2-8.vbs
Const YesButton = 6
Const QuestionMark = 32
Const YesNo = 4
'display a pop-up with yes/no buttons and question mark icon
Set objShell = CreateObject("WScript.Shell")
intValue = objShell.Popup("Do
www.eeworm.com/read/104815/15682683
sendifm1 copi.sendifm1
#! /bin/sh
## $Revision: 1.1 $
## SH script to send UUCP batches out.
## =()()=
. ~news/innshellvars
PROGNAME=`basename $0`
LOCK=${LOCKS}/LOCK.${PROGNAME}
LOG=${MOST_LOGS}/
www.eeworm.com/read/104361/15697233
c lex.yy.c
# include "stdio.h"
# define U(x) ((x)&0377)
# define YYLERR yysvec
# define YYSTATE (yyestate-yysvec-1)
# define YYOPTIM 1
# define YYLMAX 200
# define output(c) putc(c,yyout)
# define input()
www.eeworm.com/read/104361/15697243
c lex.yy.c
# include "stdio.h"
# define U(x) ((x)&0377)
# define NLSTATE yyprevious=YYNEWLINE
# define BEGIN yybgin = yysvec + 1 +
# define INITIAL 0
# define YYLERR yysvec
# define YYSTATE (yyestate-yysve
www.eeworm.com/read/104054/15711547
fixperm
#!/bin/sh
##
## fixperm -- Fix File Permission inside Sourcetree
## Copyright (c) Ralf S. Engelschall, All Rights Reserved.
##
for p in $*; do
for file in `find $p -depth -print`; do
if [
www.eeworm.com/read/103759/15722426
ini keyword.ini
abstract
boolean
break
byte
byvalue
case
cast
catch
char
class
const
continue
default
do
double
else
extends
false
final
finally
float
for
future
generic
goto
if
implements
www.eeworm.com/read/103672/15726787
for sub qpout.for
SUBROUTINE QPOUT(N,M,NAMAX,MAMAX,G,C,A,B,V,OSCL,SCL)
DOUBLE PRECISION G(NAMAX,N),A(NAMAX,M),C(N),B(M),SCL(MAMAX),V(M),
* OSCL,ZERO
DO 1 J=1,N
C(J)=C(J)*OSCL
DO 1 I=1,N
www.eeworm.com/read/103672/15726790
for sub fwdsub.for
SUBROUTINE FWDSUB(N,NAMAX,D,TRANS,W)
DOUBLE PRECISION D(NAMAX,N),W(N)
LOGICAL TRANS
IF (TRANS)GOTO 3
DO 2 I=1,N
DO 1 J=1,I-1
W(I)=W(I)-D(I,J)*W(J)
1 CONTINUE
W(I)=W(I)/D(I,I)
2 C