代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/132312/5918431
txt repeat.txt
JSP 2.0 Examples - Repeat SimpleTag Handler
JSP 2.0 Examples - Re
www.eeworm.com/read/131315/5935878
t repeat.t
#!./perl
# $Header: repeat.t,v 4.0 91/03/20 01:54:26 lwall Locked $
print "1..19\n";
# compile time
if ('-' x 5 eq '-----') {print "ok 1\n";} else {print "not ok 1\n";}
if ('-' x 1 eq '-') {print
www.eeworm.com/read/108103/6186059
pas repeat.pas
{**************************}
{ FastScript v1.0 }
{ 'Repeat' operator demo }
{**************************}
var
i, j: Integer;
begin
j := 1;
i := 0;
repeat
j := j + 1
www.eeworm.com/read/101082/6248875
c repeat.c
#ifndef lint
static char *sccsid = "@(#)repeat.c 4.1 (ULTRIX) 7/17/90";
#endif lint
/*
Set `result' equal to `str' repeated `repfac' times.
Return `result'.
*/
char *repeat(result,str,repfac)
ch
www.eeworm.com/read/338640/6316473
rb repeat.rb
#!/usr/local/ruby
class Repeat
@@total=0
def initialize(string, times)
@string = string
@times = times
end
def repeat
@@total +=@times
return @string * @times
end
def total
"total t
www.eeworm.com/read/493005/6403806
cal repeat.cal
/*
* repeat - return the value of a repeated set of digits
*
* Copyright (C) 2003 Landon Curt Noll
*
* Calc is open software; you can redistribute it and/or modify it under
* the terms of the v
www.eeworm.com/read/485184/6566543
java repeat.java
import java.util.*;
class Repeat {
public static void main(String[] arguments) {
String sentence = "Thorium 230 is not a toy.";
int count = 10;
Calendar start = Cale
www.eeworm.com/read/485184/6566544