代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/458101/7308607
asp@filename=trycss_background tryit_view.asp@filename=trycss_background
body
{
background: #00ff00 url('smiley.gif') no-repeat fixed center;
}
This is some text
This is some text
www.eeworm.com/read/458101/7311105
asp@filename=tryhtml_bodybgimg tryit_view.asp@filename=tryhtml_bodybgimg
Look: A background image!
Both gif and jpg files can be used as HTML backgrounds.
If the image is smaller than the page, the imag
www.eeworm.com/read/456603/7343841
v loop3.v
module loop3;
integer i;
initial begin
i=0;
repeat(4)
begin
$display ("i=%h",i);
i=i+1;
end
end
endmodule
www.eeworm.com/read/455595/7369716
txt 各数位不重复的数.txt
#include
#include
#include
using namespace std;
long fac[10];
long howmany[9];
/*
题目:各数位不重复的数
输入:
10000
输出:
26057
*/
//思路:通过二分法查找,找到所要的数
void getfac()
www.eeworm.com/read/450999/7473983
pas roat9.pas
var v:array[1..50] of integer;
i,n,x,p:integer;
begin
write('n=');readln(n);
write('x=');readln(x);
write('v[1]=');
readln(v[1]);
i:=2;
repeat
write ('v[',i,']=');
readln(v[i]);
if v[i]
www.eeworm.com/read/450999/7474063
pas rostr6.pas
var s:string;
n:integer;
begin
write('s=');
readln(s);
repeat
n:=pos(' ',s);
if n0 then delete(s,n,1);
until n=0;
write(s);
readln;
end.
www.eeworm.com/read/446819/7564389
cpp stream.cpp
//---------------------------------------------------------------------------
//
// Stream.cpp: STREAM Routines Implementation
//
//----------------------------------------------------------------
www.eeworm.com/read/444914/7602888
cpp texture.cpp
// texture.cpp: implementation of the texture class.
//
//////////////////////////////////////////////////////////////////////
#include "texture.h"
////////////////////////////////////////////