代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/150794/12260714
c km5.c
//用外部中断1检测设备的漏电,如检测到有漏电发生,立即从
//P1.0口送出一个高电平控制信号,关断用电设备的电源。
#include
delay(unsigned char x)
{unsigned char i,j;
for(i=0;i
www.eeworm.com/read/150701/12270776
c tri.c
/*
This code is described in "Computational Geometry in C" (Second Edition),
Chapter 1. It is not written to be comprehensible without the
explanation in that book.
Input: 2n integer coordinates fo
www.eeworm.com/read/252574/12274894
c uart.c
/*********************************************************************
*
* UART access routines for C18 and C30
*
*********************************************************************
*
www.eeworm.com/read/252574/12274924
c maindemo.c
/*********************************************************************
*
* Example Web Server Application using Microchip TCP/IP Stack
*
*************************************************
www.eeworm.com/read/252509/12277809
cpp 表达式转换.cpp
#define MAXSIZE 64
typedef int datatype;
#include
typedef struct
{
datatype data[MAXSIZE];
int top;
}seqstack;
seqstack s;
char in[20],out[20];
////////////////////////////////////
www.eeworm.com/read/150619/12280254
bak synimp.java.bak
/**类SynImp用于共享数据资源,该类加入了同步控制机制,控制同一时刻只有一个线程取出数据和写入数据*/
class SynImp{
/*定义一个成员变量index,用于控制数据的读写操作*/
private int index = 0;
/*声明一个整型数组,用来存放共享数据*/
private int[] data = new int[4];
/**方法popup()
www.eeworm.com/read/150619/12280258
java synimp.java
/**类SynImp用于共享数据资源,该类加入了同步控制机制,控制同一时刻只有一个线程取出数据和写入数据*/
class SynImp{
/*定义一个成员变量index,用于控制数据的读写操作*/
private int index = 0;
/*声明一个整型数组,用来存放共享数据*/
private int[] data = new int[4];
/**方法popup()
www.eeworm.com/read/338797/12282355
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/252371/12285191
txt 1994年4月二级笔试试题foxbase+.txt
九四年四月全国计算机等级考试二级笔试试题
基础知识与FoxBASE+程序设计
(考试时间120分钟,满分100分)
一、选择题(1~30每小题1分,31~45每小题2分,共60分)
下列各题 A),B),C),D)四个选项,只有一个选项是正确的,请将正确的选项在答题卡相应位置上
涂黑。答在试卷上不得分。
1.二进制数101110转换为等值的八进制数是( )。
A) ...