代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/131315/5944339
p kat2.p
program kat(input, output);
var
ch: char;
i: integer;
name: packed array [1..100] of char;
begin
i := 1;
repeat
if i < argc then begin
argv(i, name);
reset(input, name);
www.eeworm.com/read/131315/5944343
p kat.p
program kat(input, output);
var
ch: char;
begin
while not eof do begin
while not eoln do begin
read(ch);
write(ch)
end;
readln;
writeln
end
end { kat }.
www.eeworm.com/read/131315/5945444
src vgrindefs.src
# Copyright (c) 1987, 1993
# The Regents of the University of California. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted pro
www.eeworm.com/read/131315/5945637
c expand.c
/*
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permi
www.eeworm.com/read/131315/5946249
c hack.termcap.c
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.termcap.c - version 1.0.3 */
#include
#include "config.h" /* for ROWNO and COLNO */
#include "def.flag.h" /* for
www.eeworm.com/read/130382/5957306
c bnjacobi.c
/*
* Compute the Jacobi symbol (small prime case only).
*
* Written by Colin Plumb.
*
* $Id: bnjacobi.c,v 1.2 1997/05/09 23:17:22 lloyd Exp $
*/
#include "bn.h"
#include "bnjacobi.h"
www.eeworm.com/read/130382/5958018
c bnjacobi.c
/*
* Compute the Jacobi symbol (small prime case only).
*
* Written by Colin Plumb.
*
* $Id: bnjacobi.c,v 1.1 1997/12/14 11:30:32 wprice Exp $
*/
#include "bn.h"
#include "bnjacobi.h"
www.eeworm.com/read/130241/5962734
java wordchecksecuritymanager.java
/**
@version 1.20 2004-09-11
@author Cay Horstmann
*/
import java.io.*;
import java.security.*;
import java.util.*;
/**
This security manager checks whether bad words are
enco
www.eeworm.com/read/130105/5964694
c eicfftoa.c
/* eicfftoa.c
*
* (C) Copyright Dec 29 1995, Edmond J. Breen.
* ALL RIGHTS RESERVED.
* This code may be copied for personal, non-profit use only.
*
*/
/*#define DBL_MIN_EXP -100
www.eeworm.com/read/129393/5973879
c serial.c
#include "config.h"
void InitSerial(void)
{
SCON=0x50;
PCON=0x80;
TMOD=TMOD&0x0f;
TMOD=TMOD|0x20;
TH1=0xf3; //com is 4800 b/s
TL1=0xf3;
TR1=1;
ES=1;
EA=1;