代码搜索:repeat

找到约 6,690 项符合「repeat」的源代码

代码结果 6,690
www.eeworm.com/read/222590/14685042

readme_zbuf

FILE LIST - zbufManip.c DESCRIPTION - This module illustrates the use of zbufLib routines, and their effect on zbuf segments and data sharing. To keep the example manage
www.eeworm.com/read/220617/14795097

v loop3.v

module loop3; integer i; initial begin i=0; repeat(4) begin $display ("i=%h",i); i=i+1; end end endmodule
www.eeworm.com/read/119677/14824545

pl0 ceshi2.pl0

var m, n, r, q; procedure gcd; begin repeat q := m / n; r := m - q * n; m := n; n := r; until r = 0 end; begin read(m); read(n); if m < n then
www.eeworm.com/read/119154/14838082

ps gs_cmap.ps

% Copyright (C) 1995, 1996, 1997 Aladdin Enterprises. All rights reserved. % % This file is part of Aladdin Ghostscript. % % Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.
www.eeworm.com/read/117953/14893934

java cointoss.java

//Copyright (c) 1998, Arthur Gittleman //This example is provided WITHOUT ANY WARRANTY either expressed or implied. /* The user guesses heads or tails * We return a random number, interpreting
www.eeworm.com/read/117953/14893966

java dogrowth.java

//Copyright (c) 1998, Arthur Gittleman //This example is provided WITHOUT ANY WARRANTY either expressed or implied. /* Enhances Example 4.5 to ask if the user wants to *
www.eeworm.com/read/218826/14905158

asm mcbsp_mode.asm

.include "mcbsp_reg.asm" .def spiFive8BitMode .def spiDouble8BitMode .def setToReadSequenceMode;single phase, 16bit-mode, 128channal. .def spiDouble8BitModeSecond .text setToReadSequenceMo
www.eeworm.com/read/218826/14905170

asm mcbsp_spi.asm

.include "mcbsp_reg.asm" .def setTo8BitMode_ .def setTo16BitMode_ ;.def setTo5_8BitMode_ .def setTo40BitMode_ .def SPIModeInitial ;the default is also 8BitMode SPIModeInitial: ;reset the
www.eeworm.com/read/117368/14928225

pl0 e01.pl0

PROGRAM EX01; VAR SUM,I,M; BEGIN I:=0; SUM:=0; READ(M); IF M>0 THEN BEGIN REPEAT ++I; SUM+=I; M--; UNTIL M=0; END ELSE SUM:=0;