代码搜索:while

找到约 10,000 项符合「while」的源代码

代码结果 10,000
www.eeworm.com/read/127543/14350494

c stpnxt.c

#include #include #include "xtdio.h" /* ------------------------------------------------------------------ * Definitions Section: */ #define MAXCNT 65535 /* -------------------
www.eeworm.com/read/127476/14352266

c console.c

#include "types.h" #include "console.h" #include "utils.h" #include "board.h" #include #define CONSOLE_OUTPUT 1 int console_init(void) { outl(0x03, ULCON0); outl(0x09, UCON0)
www.eeworm.com/read/229127/14352438

c wordcount.c

#include "WordCount.h" ostream& operator
www.eeworm.com/read/127441/14355090

c cstring.c

/* pconsole WJ101 Copyright (C) 2001 Walter de Jong This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Publ
www.eeworm.com/read/228991/14356170

txt ch19.txt

Chapter 19 -------------------------- Setting Flags to Trap Bugs -------------------------- #!/bin/bash let flag=1 echo "Outside of while loop" while [ "$flag" -eq 1 ] do echo "ins
www.eeworm.com/read/228991/14356189

txt ch11.txt

Chapter 11 ---------- while Loop ---------- let counter=1 while [ "$counter" -lt 5 ] do if [ "$counter" -eq 1 ] then echo "Hello, Mary." fi if [ "$counter" -eq 2 ] th
www.eeworm.com/read/228977/14356450

m updatestates.m

function x = updatestates(thite,q); % PURPOSE : Performs the resampling step of the SIR algorithm % in order(numSamples) steps. % INPUTS : - xu = Predicted state samples. % -
www.eeworm.com/read/228782/14363499

lst sms.lst

C51 COMPILER V7.02a SMS 08/28/2005 17:10:47 PAGE 1 C51 COMPILER V7.02a, COMPILATION OF MODULE SMS OBJECT MODULE PLACED IN sm
www.eeworm.com/read/228773/14363995

arith

#!/bin/sh x=0 while [ "$x" -ne 10 ]; do echo $x x=$(($x+1)) done exit 0
www.eeworm.com/read/228773/14364049

c stdio.c

#include int main() { int c; FILE *in, *out; in = fopen("file.in","r"); out = fopen("file.out","w"); while((c = fgetc(in)) != EOF) fputc(c,out); exit(0);