代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/339554/12225685
pas ac1093.pas
program tju1093;
const
maxn=2004;
var
x,y,l:array[0..maxn]of cardinal;
n,i,ans:cardinal;
procedure qsort(s,t:cardinal);
var
p,i,j,tx,ty:cardinal;
begin
if s>=t then exit;
www.eeworm.com/read/339554/12225690
pas ac1078.pas
program tju1078;
const
maxsize=20;
var
qx,qy:array[1..sqr(maxsize)]of byte;
step:array[1..maxsize,1..maxsize]of byte;
count:array[1..maxsize,1..maxsize]of qword;
n,m,p,c,i,j,t,f,r:wor
www.eeworm.com/read/150429/12293771
m lms_test.m
%主函数
%XS是周期性信号
%XN是干扰信号
%
clear
for repeat=1:100
t=0:0.1:999.9;
xs=(5*sin(0.05*t))';
xn=(sqrt(0.5)*randn(1,length(t)))';
d=xs;
x=xs+xn;
figure(1);
subplot(311);
plot(t,xs);grid;
ylabel('
www.eeworm.com/read/252119/12301172
txt wordstar.txt
TDE_WS13 HELP A summary of WordStar 2-key commands Maximize [Ctrl-F9]
available in TDE. Hide win [Alt-6]
________________________________________
www.eeworm.com/read/231652/14224828
pas ac1066.pas
program ural1066;
var
n,i:integer;
a,b,c,l,r,h2:real;
h1:real;
begin
readln(n,h1);
l:=0;r:=h1;
repeat
b:=h1;
h2:=(l+r)/2;c:=h2;
for i:=3 to n do begin
a:=b;b:
www.eeworm.com/read/231652/14224870
pas ac1098.pas
program ural1098;
const
n=1999;
maxl=30000;
var
q:array[1..maxl]of char;
l,p,i:integer;
c:char;
begin
l:=0;
repeat
read(c);
if c>=' ' then begin
inc(l);
www.eeworm.com/read/231652/14225272
pas ac1277.pas
program ural1277;
const
maxn=100;
inf=65535;
var
cap,flow:array[1..maxn*2,1..maxn*2]of word;
lab:array[1..maxn*2]of integer;
aug:array[1..maxn*2]of boolean;
n,s,t:byte;
k,m,i,j,
www.eeworm.com/read/231652/14225296
pas ac1261.pas
program ural1261;
var
n,bill,tip,m:longint;
begin
read(n);bill:=n;m:=1;
repeat
if n mod 3=2 then begin
inc(tip,m);
inc(n);
end;
n:=n div 3;m:=m*3;
until n=0;
www.eeworm.com/read/229834/14315176
pro readin.pro
% File readin.pl - Prolog program to read in a file of sentences
% using built in library(readin)
% To use readin from standard input, used CTRL-D for eol, CTRL-Z for eof
% readin tokenizes w
www.eeworm.com/read/224480/14588729
m ex2_14.m
Z=[-3; -7]; P=[0; -1.8+1.63j; -1.8-1.63j; -1; -1];
K=6.8; G=zpk(Z,P,K); G1=tf(G);
%up to now repeat the earlier example, then get the zpk model
G2=zpk(G1)