代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/261153/11663701
vwf show.sim.vwf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
www.eeworm.com/read/157511/11698054
pl test3.pl
var x,y,rem;
begin
read(x);
read(y);
repeat
rem:=x-y*(x/y);
x:=y;
y:=rem
until rem=0;
write(x)
end.
www.eeworm.com/read/153778/12007112
css slider.css
/******************************************
* Slider Bar Form Element Script
*
* Original program copyright David Harrison
* d_s_h2@hotmail.com
* Version 2 copyright Eric C. Davis
* eric@10mar200
www.eeworm.com/read/256247/12012098
css header.css
/* CSS Document */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,fieldset,legend,input,textarea,blockquote,th,td{ margin:0; padding:0;}
table { border-collapse:collapse; border-spacing:0; font
www.eeworm.com/read/254011/12168891
css tree.css
/* Copyright (c) 2006 Yahoo! Inc. All rights reserved. */
/* first or middle sibling, no children */
.ygtvtn {background: url(default/tn.gif) 0 0 no-repeat; width:16px; height:22px; }
/* first or mi
www.eeworm.com/read/339554/12225322
pas ac1105.pas
program tju1105;
const
zero=1e-6;
var
a,k,l,r,t,s1,s2:extended;
begin
repeat
read(a,k);
l:=k;r:=1e10;
repeat
t:=(l+r)/2;
s1:=a*t*t/2;
s2:=(t-k)*(t-k)*(t
www.eeworm.com/read/339554/12225419
pas ac1118.pas
program tju1118;
var
n:int64;
begin
repeat
read(n);
if n>=520000000 then
writeln(n-3)
else
writeln(520005196-(519999999-n) mod 5200);
until seekeof;
end.
www.eeworm.com/read/337458/12367476
pl gcd.pl
var x,y,rem;
begin
read(x);
read(y);
repeat
rem:=x-y*(x/y);
x:=y;
y:=rem
until rem=0;
write(x)
end.
www.eeworm.com/read/250058/12437484
css foldertree.css
/* structural styles and offsets */
ul.foldertree, ul.foldertree li, ul.foldertree ul {
margin: 0;
padding: 0;
list-style-type: none;
font-size: 100%;
}
ul.foldertree {
p