代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/339554/12225631
pas ac1013.pas
program tju1013;
var
s:string;
n,m,i,j,p,q:byte;
c:char;
begin
repeat
s:='';
repeat
read(c);
if c=' ' then break;
s:=s+c;
until false;
n:=length(
www.eeworm.com/read/339554/12225698
pas ac1076.pas
program tju1076;
const
m=7;
var
f:array[0..m*m+1]of byte;
p:array[0..m-1,0..m-1]of longint;
a,b,n,i,t:longint;
begin
f[1]:=1;f[2]:=1;
repeat
read(a,b,n);
if n=0 then hal
www.eeworm.com/read/231652/14224833
pas ac1022.pas
program ural1022;
const
maxn=100;
var
adj:array[1..maxn,1..maxn]of boolean;
indeg:array[1..maxn]of byte;
v:array[1..maxn]of boolean;
n,i,x,c:byte;
begin
fillchar(adj,sizeof(adj),0
www.eeworm.com/read/231652/14224979
pas ac1050.pas
program ural1050;
const
maxl=250;
var
s:array[1..maxl]of string;
n,i,j,x,y:longint;
procedure clear;
begin
if x=0 then exit;
delete(s[x],y,1);
if x=i then dec(j);
x:
www.eeworm.com/read/231652/14225115
pas ac1303.pas
program ural1303;
const
maxm=5000;
var
l,a:array[0..maxm]of longint;
m,i,j,x,r,now,s:longint;
begin
read(m);
for i:=1 to m do
l[i]:=m;
repeat
read(i,j);
if j
www.eeworm.com/read/125223/14505631
c ex1.c
int counter;
void main (void) {
counter = 0;
while (1) { /* repeat forever */
counter++; /* increment counter */
}
}
www.eeworm.com/read/222279/14698415
xm colorhue.xm
#######################################################################
# #
# Example: Plotting Color
www.eeworm.com/read/117953/14893922
java reward.java
//Copyright (c) 1998, Arthur Gittleman
//This example is provided WITHOUT ANY WARRANTY either expressed or implied.
/* How many grains of rice does the Rajah place on
* square n if the Rajah
www.eeworm.com/read/216849/14991058
txt 05.txt
var a,sum;
begin
sum:=0;
a:=1;
repeat
sum+=a;
a++;
until a>100;
write(sum);
end.
www.eeworm.com/read/295197/8180934
plx test.plx
program
integer i,j;
begin
write 2;
i:=3;
repeat
j:=3;
while j=i then
write i
end;
i:=i+2
until i>=100
end.