代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/477701/6731742

cpp bag.cpp

#include using namespace std; typedef float T; //template void Traceback(int n,T w[],T v[],T p[][2],int *head,int x[]) { T j=p[head[0]-1][0], m=p[head[0]-1][1]; for(int
www.eeworm.com/read/477716/6732808

c testque.c

#include #include "queue.h" main( ) { Queue Q; int i; Q = CreateQueue( 12 ); for( i = 0; i < 10; i++ ) Enqueue( i, Q ); while( !IsEmpty( Q ) ) { p
www.eeworm.com/read/477109/6747639

c 44blib.c

/************************************************ * NAME : 44BLIB.C * * Version : 17.APR.00 * ************************************************/ #include "..\inc\44b.h" #include "..\in
www.eeworm.com/read/477112/6747970

txt 点阵显示.txt

#include"reg51.h" #define uchar unsigned char #define uint unsigned int sbit rclk=P1^4; uchar code tab_1[]={0xC3,0xE7,0xE7,0xE7,0xE7,0xE7,0xE3,0xE7}; //uchar code tab_1[]={0x81,0xDF,0xEF,0xF
www.eeworm.com/read/476785/6749859

lst main.lst

C51 COMPILER V6.23a MAIN 11/13/2002 23:29:37 PAGE 1 C51 COMPILER V6.23a, COMPILATION OF MODULE MAIN OBJECT MODULE PLACED IN m
www.eeworm.com/read/476785/6749865

c main.c

#include /* special function register declarations */ /* for the intended 8051 derivative */ #include
www.eeworm.com/read/476785/6750304

c 例7-7.c

#include "reg51.h" #define ON 1 #define OFF 0 sbit Lamp1=P0^0; sbit Lamp2=P0^1; sbit Lamp3=P0^0; sbit Lamp4=P0^1; sbit Lamp5=P0^0; sbit Lamp6=P0^1; sbit Lamp7=P0^0; sbit Lamp8=P0^1;
www.eeworm.com/read/476355/6758009

c 0_to_100.c

#include void main () { int value = 0; while (value
www.eeworm.com/read/476355/6758024

c no_cont.c

#include void main() { int counter; printf("\nEven values\n"); for (counter = 1; counter
www.eeworm.com/read/476355/6758050

c chrcnt.c

int chrcnt(const char *string, int letter) { int count = 0; while (*string) if (*string == letter) count++; return(count); }