代码搜索:Repeat
找到约 6,690 项符合「Repeat」的源代码
代码结果 6,690
www.eeworm.com/read/184795/9075034
ppt repeat.ppt
www.eeworm.com/read/184795/9075040
cpp repeat.cpp
#include
#include
#include
const N=100000;
int main()
{
ifstream in("input.txt");
ofstream out("output.txt");
int i,j,n,m,p,MaxLen=0;
char *c =
www.eeworm.com/read/183805/9137768
c repeat.c
/* GNU Chess 5.0 - repeat.c - repeat position detector code
Copyright (c) 1999-2002 Free Software Foundation, Inc.
GNU Chess is based on the two research programs
Cobalt by Chua Kong-Si
www.eeworm.com/read/377191/9291175
txt repeat.txt
const a=1.4;
var x: integer;
begin
x=a;
repeat
x:=x+1;
until x>10 ;
write("x=",x);
end.
www.eeworm.com/read/362324/10005158
gif repeat.gif
www.eeworm.com/read/362324/10005423
gif repeat.gif
www.eeworm.com/read/164258/10120942
c repeat.c
#include
#include
#include
#include
#include
#include "rt_com.h"
#include "rt_comP.h"
int period=100000000;
int fifo_size=4000;
pthread_
www.eeworm.com/read/359581/10135205
c repeat.c
/* repeat.c -- main() with arguments */
#include
int main(int argc, char *argv[])
{
int count;
printf("The command line has %d arguments:\n", argc - 1);
for (count = 1; c
www.eeworm.com/read/358784/10179586
asm repeat.asm
TITLE Repeat Block Examples (Repeat.asm)
; This program demonstrates the REPEAT, FOR,
; FORC, and WHILE directives.
; Last update: 2/30/02
INCLUDE Irvine32.inc
INCLUDE Macros.inc
C
www.eeworm.com/read/358270/10193288
m repeat.m
% REPEAT Upsample a vector by inserting repeated samples
%
% [y] = REPEAT (x,N) upsamples x by a factor N using repetition
%
function [Y] = repeat(x, N);
Y = [];
for i = 1:length(x)
Y