代码搜索:until
找到约 4,232 项符合「until」的源代码
代码结果 4,232
www.eeworm.com/read/339554/12225474
pas ac1014.pas
program tju1014;
var
n,f,c:longint;
begin
repeat
read(n);
f:=5;c:=0;
while f
www.eeworm.com/read/339554/12225508
pas ac1007.pas
program tju1007;
var
a,s:longint;
begin
repeat
read(a);
inc(s,a);
until seekeof;
writeln(s);
end.
www.eeworm.com/read/339554/12225512
pas ac1021.pas
program tju1021;
const
maxh=75;
maxw=75;
var
map:array[-1..maxh+2,-1..maxw+2]of char;
qx,qy:array[1..(maxh+4)*(maxw+4)+1]of shortint;
seg:array[-1..maxh+2,-1..maxw+2]of word;
h,w,i
www.eeworm.com/read/339554/12225531
pas ac1027.pas
program tju1027;
var
n,x,p:word;
begin
repeat
read(n);n:=n*2+1;x:=1;p:=0;
repeat
x:=x*2 mod n;inc(p);
until x=1;
writeln(p);
until seekeof;
end.
www.eeworm.com/read/339554/12225551
pas ac1018.pas
{A rubbish prob... much too unclear statement}
program tju1018;
var
a,b:byte;
begin
repeat
read(a,b);
writeln(a:7);
writeln('*',b:6);
writeln('-------');
if b>9 then
www.eeworm.com/read/339554/12225636
pas ac1086.pas
program tju1086;
const
maxl=2000;
var
a,b:array[1..maxl]of char;
dist:array[boolean,0..maxl]of longint;
la,lb,i,j,k:word;
function min(a,b:longint):longint;
begin
if a
www.eeworm.com/read/339554/12225658
pas ac1005.pas
program tju1005;
const
maxn=50;
var
a:array[-1..maxn]of longint;
i:byte;
begin
a[1]:=1;
for i:=2 to maxn do
a[i]:=a[i-1]+a[i-3];
repeat
read(i);
writeln(a[i]);
u
www.eeworm.com/read/339554/12225682
pas ac1044.pas
program tju1044;
var
n,i:longint;
begin
read(n);
repeat
inc(i);
if (i mod 7=0) or (i mod 10=7) then begin
writeln(i);
dec(n);
end;
until n=0;
end.
www.eeworm.com/read/339554/12225730
pas ac1202.pas
program tju1202;
var
all,one:longint;
begin
repeat
read(all,one);
if (all
www.eeworm.com/read/339554/12225741
pas ac1241.pas
program tju1241;
var
n,t,i,s:longint;
begin
repeat
read(n);t:=trunc(sqrt(n));
s:=0;
for i:=1 to t do
inc(s,n div i);
writeln(s*2-t*t);
until seekeof;
end.