代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/450999/7473948
pas gauss.pas
program suma_Gauss;
{suma primelor n nr naturale}
var s,n,i:integer;
begin
write('n= ');
readln(n);
s:=0;
i:=0;
{for i:=1 to n do
s:=s+i;}
repeat
s:=s+i;
i:=i+1;
until i=n+1
www.eeworm.com/read/447298/7554762
c testthreads.c
#include
#include
#include "libxml.h"
#if defined(LIBXML_THREAD_ENABLED) && defined(LIBXML_CATALOG_ENABLED)
#include
#include
#include
www.eeworm.com/read/446819/7564385
h sse128.h
//---------------------------------------------------------------------------
//
// SSE128.h: 128-bit SSE/SSE2 Memory Routines Header
//
//---------------------------------------------------------
www.eeworm.com/read/441678/7666729
asm seg7.asm
ORG 00H
BEGIN:
MOV R0,#0FH
REPEAT:
MOV A,R0
CALL SEGCODE
MOV P1,A
CALL DELAY
DJNZ R0,REPEAT
JMP BEGIN
DELAY:
MOV