代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/434837/7801062

c 流水灯.c

#include #define uint unsigned int #define uchar unsigned char void delay(uint z) { uint x,y; for(x=z;x>0;x--) for(y=120;y>0;y--); } main() { uchar Ledindex=0; b
www.eeworm.com/read/434836/7801090

c timer04.c

/*从第一个数码管开始轮流显示0~f*/ #include #define uint unsigned int void delay(uint z) { uint x,y; for (x=z;x>0;x--) for(y=110;y>0;y--); } void display() { P0=0x00;
www.eeworm.com/read/402057/7807146

cpp 3_19.cpp

#include #include #define N 6 void main() { int a[N+1][N+1]; int row,column,i,j,k,t,p; row=0;column=1;k=N;t=1;p=1; do { for(i=1;i
www.eeworm.com/read/121876/7809963

c mystring.c

//********************************************************************************** //杨屹 2002/08/20 第一版 //字符串操作函数 //联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效) //******************************
www.eeworm.com/read/299965/7816668

h stl_algs.h

// This file contains sample implementations of assorted algorithms // from the standard library. It is not actually used by any of the // other code in the book. template In
www.eeworm.com/read/299965/7817181

h stl_algs.h

// This file contains sample implementations of assorted algorithms // from the standard library. It is not actually used by any of the // other code in the book. template In
www.eeworm.com/read/299965/7817541

h stl_algs.h

// This file contains sample implementations of assorted algorithms // from the standard library. It is not actually used by any of the // other code in the book. template In
www.eeworm.com/read/399963/7819171

arith

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

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);
www.eeworm.com/read/299931/7819857

cpp long integer.cpp

// Long Integer.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include #include typedef struct DuLNode{ int data; struct D