搜索结果
找到约 1,270 项符合
POwer-Down 的查询结果
通讯/手机编程 手机基本原理: ETACS、GSM蜂窝手机是一个工作在双工状态下的收发信机。一部移动电话包括无线接收机(Receiver)、发射机(Transmitter)、控制模块(Controller)及人机界面
手机基本原理: ETACS、GSM蜂窝手机是一个工作在双工状态下的收发信机。一部移动电话包括无线接收机(Receiver)、发射机(Transmitter)、控制模块(Controller)及人机界面部分(Interface)和电源(Power Supply)。
matlab例程 matlab实现最优化选择的一个算法
matlab实现最优化选择的一个算法,大家可以下下来参考,我也是从别处down的,谢谢原作者
Java书籍 关于extjs详细开发的文档
关于extjs详细开发的文档,我也是从网络上down下来的,好东西不敢一个人独享,分享出来给大家,
Java编程 Java is the first language to provide a cross-platform I/O library that is powerful enough to handle
Java is the first language to provide a cross-platform I/O library that is powerful enough to handle all these diverse tasks. Java is the first programming language with a modern, object-oriented approach to input and output. Java s I/O model is more powerful and more suited to real-world tasks than ...
SQL Server 学生信息管理系统
学生信息管理系统,Power builder
编辑器/阅读器 FileEdit can edit file ,save file ,open file ,have basic simple functions for file .INSERT, BACKSPAC
FileEdit can edit file ,save file ,open file ,have basic simple functions for file .INSERT, BACKSPACE ,TAB,PGUP,PGDOWN,UP,DOWN,LEFT,RIGHT AND SO ON
其他书籍 Fully revised to cover the latest standards and technologies, XML and Java(TM), Second Edition provi
Fully revised to cover the latest standards and technologies, XML and Java(TM), Second Edition provides the practical solutions developers need to design powerful and portable Web-based applications. Featuring step-by-step examples, this book focuses on harnessing the power of Java(TM) and XML toget ...
其他 Introduction Computer security is undeniably important, and as new vulnerabilities are discovered a
Introduction
Computer security is undeniably important, and as new vulnerabilities are discovered and
exploited, the perceived need for new security solutions grows. "Trusted computing"
initiatives propose to solve some of today s security problems through hardware changes
to the personal computer. ...
嵌入式/单片机编程 xl系列单片机实验仪演示程序 DS18B20温度控制数码管 。 DS18B20温度控制数码管显示 : 1、K3 → 进入设定温度报警值 TL 状态: L--20 2、K3 → 进入设定温度
xl系列单片机实验仪演示程序 DS18B20温度控制数码管 。
DS18B20温度控制数码管显示 :
1、K3 → 进入设定温度报警值 TL 状态: L--20
2、K3 → 进入设定温度报警值 TH 状态: H--28
3、K3 → 返回
4、设定过程: K1 →加键 (UP), K2 →减键 (DOWN),可快速调。 ...
数据结构 void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >=
void Knight(int i , int j)
{
// printf("%d %dn",i,j)
if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size )
{
return
}
step++
board[i][j]=step
if (step == Size*Size)
{
showboard()
system("PAUSE")
return
}
//DFS
Knight(i-2,j-1) //left
Knight(i-2,j+1)
Knight(i+2,j-1) //right ...