代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/231075/14257663
c ex.c
#include "reg51.h"
void DELAY();
main()
{
while(1)
{
P1=0x08; //A
DELAY();
P1=0x0C; //AB
DELAY();
P1=0x04; //B
DELAY();
P1=0x06; //BC
DELAY();
P1=0x02; //C
www.eeworm.com/read/129072/14268032
cpp bwfind.cpp
// Bwfind.cpp: implementation of the CBwfind class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "bw.h"
#include "Bwfind.h"
#ifdef _
www.eeworm.com/read/129042/14269039
cpp quick sort.cpp
#include
#include
#define MAXSIZE 20
void quicksort(int[],int,int);
typedef struct //定义排序表的结构
{int array[MAXSIZE]; //数据元素关键字
www.eeworm.com/read/128995/14270676
c vecops.c
/*----------------------------------------------------------------------
File : vecops.c
Contents: some special vector operations
Author : Christian Borgelt
History : 16.09.1996 file creat
www.eeworm.com/read/230813/14273370
c machine_control.c
#include "reg52.h"
#include "absacc.h"
#define uchar unsigned char
#define SLAVE 0x01
// sbit light_1=P1^O;
//sbit light_2=P1^2;
sbit key_1=P1^0;
sbit key_2=P1^2;
u
www.eeworm.com/read/230803/14273670
c xinhaoxulie.c
#include
#include
sbit P0_0=P0^0; //10ms信号序列输出
sbit P2_0=P2^0; //信号序列101010
sbit P2_3=P2^3; //信号序列110110
sbit P2_6=P2^6; //信号序列001001
unsigned char num0[6]={0x01,0x00,0
www.eeworm.com/read/230770/14274736
cpp ziptool.cpp
#include "stdafx.h"
#include "ZipTool.h"
#include "zlib/zlib.h"
//-- CZipTool 晹暘 -----------------------
bool CZipTool::Check( const char* fname, unsigned long fsize )
{
const unsigned ch
www.eeworm.com/read/128841/14277099
cpp nbtheory.cpp
// nbtheory.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#ifndef CRYPTOPP_IMPORTS
#include "nbtheory.h"
#include "modarith.h"
#include "algparam.h"
#include
www.eeworm.com/read/230739/14277273
c envargs.c
/*
Copyright (c) 1990-2005 Info-ZIP. All rights reserved.
See the accompanying file LICENSE, version 2000-Apr-09 or later
(the contents of which are also included in unzip.h) for terms of use.