代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/366926/9792668
java twothreadsleep.java
public class TwoThreadSleep extends Thread {
public void run() {
loop();
}
public void loop() {
// get a reference to the thread running this
Thread t = Thread.currentThread();
Str
www.eeworm.com/read/366806/9797136
java breaktest.java
public class BreakTest {
public static void main(String[] args) {
try {
// loop forever until an x is typed
while (true) {
int c = System.in.read();
if (c == 'x')
www.eeworm.com/read/415991/11045846
plm demo.plm
/* add MATH.LIB in Options\Compiler RL command line */
Demo: do;
$INCLUDE(MATH.DCL)
declare I byte;
declare J byte;
declare Arr(10) byte;
declare r real;
call InitRealMa
www.eeworm.com/read/415991/11045851
c hello.c
/* add MATH.LIB in Options\Compiler RL command line */
#include "math.h"
main() {
int i, j;
int arr[10];
float r;
fpinit();
loop:
j = 0;
for (i=0; i
www.eeworm.com/read/270015/11052003
s43 3_8_3.s43
#include "msp430x32x.h"
#define ADData R4 ;定义转换结果的存放位置
#define ADReady R7
RSEG CSTACK ;系统堆栈
DS 0
www.eeworm.com/read/415793/11053708
vhd numbits.vhd
LIBRARY ieee ;
USE ieee.std_logic_1164.all ;
ENTITY Numbits IS
PORT ( X : IN STD_LOGIC_VECTOR(1 TO 3) ;
Count : OUT INTEGER RANGE 0 TO 3 ) ;
END Numbits ;
ARCHITECTURE Behavi
www.eeworm.com/read/415198/11081773
s crtsi.s
; C STARTUP FOR MC68HC08
; WITH AUTOMATIC DATA INITIALISATION
; Copyright (c) 1995 by COSMIC Software
;
xref _main, __memory, __idesc__, __stack
xdef _exit, __stext
;
switch .bss
__sbss:
www.eeworm.com/read/269691/11083241
mk macos.mk
include ../Make.defines.macos
EXTRA=-DDEBUG
PROGS = call
HDRS = call.h
all: ${PROGS}
call.o: call.c ${HDRS}
main.o: main.c ${HDRS}
put.o: put.c ${HDRS}
take.o: take.c ${HDRS}
takeput.o: t
www.eeworm.com/read/269691/11083245
mk solaris.mk
include ../Make.defines.solaris
EXTRA=-DDEBUG
EXTRALIBS=-lsocket -lnsl
PROGS = call
HDRS = call.h
all: ${PROGS}
call.o: call.c ${HDRS}
main.o: main.c ${HDRS}
put.o: put.c ${HDRS}
take.o: ta