搜索结果

找到约 275 项符合 Void 的查询结果

书籍 Microwave+Radiometer+Systems

Two important microwave remote sensors are the radar and the radiometer. There have been a number of books written on various aspects of radar, but there have been only a few written on microwave radiometers, especially on sub- jects of how to design and build radiometer systems. This book, which is ...
https://www.eeworm.com/dl/521757.html
查看: 162

书籍 Microwave+Radiometer+Systems Design and Analysis

Two important microwave remote sensors are the radar and the radiometer. There have been a number of books written on various aspects of radar, but there have been only a few written on microwave radiometers, especially on sub- jects of how to design and build radiometer systems. This book, which is ...
https://www.eeworm.com/dl/521777.html
查看: 188

技术资料 C51_点亮第一个LED

#include "reg52.h"   sbit led=P0^0;    void main(){ while(1) { led=1; } }
https://www.eeworm.com/dl/847436.html
下载: 9
查看: 8366

单片机编程 100个单片机实例

#include<reg51.h> //包含单片机寄存器的头文件 /******************************************************* 函数功能:主函数 (C 语言规定必须有也只能有1 个主函数) ********************************************************/ void main(void) { while(1) //无限循环 { P1=0xff; // P1=1111 1111B,熄灭LED ...
https://www.eeworm.com/dl/502/29018.html
下载: 119
查看: 1143

编译器/解释器 简单C编译器生成的目标代码是8086的汇编代码(16位)

简单C编译器生成的目标代码是8086的汇编代码(16位),可以在一般的PC上被像MASM之类的汇编编译程序编译,生成可执行文件后,在DOS或Windows控制台下运行。 实现的语言定义如下: 语言类似于tiny语言,不支持过程调用,也就是只有一个main函数,无其他函数和全局变量 基本语句:注释语句(/*…*/),输入语句(int input(void ...
https://www.eeworm.com/dl/628/256092.html
下载: 183
查看: 1502

数据结构 数据抽象(使用类和对象设计回应程序) 实验内容描述: 1. 测试程序 假设类名为Welcome

数据抽象(使用类和对象设计回应程序) 实验内容描述: 1. 测试程序 假设类名为Welcome,测试程序如下: void main() { Welcome we Welcome you(we) you.Display() you.Set(“Thank you.”) cout<<you.Get()<<endl you.talk() you.Display() } ...
https://www.eeworm.com/dl/654/189137.html
下载: 131
查看: 1108

技术资料 1N5399

FEATURES ♦ Plastic package has Underwriters Laboratory Flammability Classification 94V-0 ♦ High surge current capability ♦ 1.5 Ampere operation at TL=70°C with no thermal runaway ♦ Low reverse leakage ♦ Construction utilizes void-free molded plastic technique ♦ High temperature soldering gu ...
https://www.eeworm.com/dl/926162.html
下载: 6
查看: 5391

软件工程 编程精粹 ─── Microsoft 编写优质无错C 程序秘诀 Writing Clean Code ─── Microsoft Techniques for Developing Bug-fr

编程精粹 ─── Microsoft 编写优质无错C 程序秘诀 Writing Clean Code ─── Microsoft Techniques for Developing Bug-free C Programs Steve Maguire 著 姜静波 佟金荣 译 麦中凡 校 电子工业出版社 编写优化、高效、无错地代码 2 这份电子书籍由PC Home 俱乐部、C++ Bulider 讨论区数位网友分别整理完成,基本 上完全 ...
https://www.eeworm.com/dl/540/170526.html
下载: 156
查看: 1189

编译器/解释器 UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, wh

UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, which is a reasonably faithful subset. This documentation describes those UnderC functions and classes which are not part of the C++ standard. UC Library Builtin functions: Most of these are standard C ...
https://www.eeworm.com/dl/628/235248.html
下载: 140
查看: 1054

其他文档 多线程游戏

/**  * 用于在逻辑和界面间传输数据的bean  * @version 1.0  */ public class DataBean {     private int first = -1;     private int second = -1;     public int getFirst() {         return first;     }     public int ...
https://www.eeworm.com/dl/508068.html
下载: 1
查看: 44