搜索结果
找到约 156 项符合
else 的查询结果
按分类筛选
- 全部分类
- 编译器/解释器 (27)
- 源码 (17)
- 单片机编程 (12)
- 其他 (8)
- 技术资料 (7)
- 汇编语言 (5)
- matlab例程 (5)
- 人工智能/神经网络 (5)
- Linux/Unix编程 (5)
- 书籍源码 (4)
- Java编程 (4)
- 数据结构 (4)
- 加密解密 (3)
- 书籍 (3)
- 开发工具 (2)
- Internet/网络编程 (2)
- VHDL/FPGA/Verilog (2)
- 系统设计方案 (2)
- 软件工程 (2)
- 软件设计/软件工程 (2)
- 网络 (2)
- Delphi控件源码 (2)
- 数学计算 (2)
- C/C++语言编程 (2)
- 嵌入式综合 (2)
- Jsp/Servlet (2)
- 教程资料 (1)
- 可编程逻辑 (1)
- 仿真技术 (1)
- 设计相关 (1)
- 单片机开发 (1)
- SCSI/ASPI (1)
- Windows CE (1)
- Delphi/CppBuilder (1)
- 电子书籍 (1)
- CA认证 (1)
- 驱动编程 (1)
- 数值算法/人工智能 (1)
- 操作系统开发 (1)
- DSP编程 (1)
- 游戏 (1)
- 通讯编程文档 (1)
- Linux/uClinux/Unix编程 (1)
- 技术书籍 (1)
- 资料/手册 (1)
- 接口技术 (1)
- 软件 (1)
- 习题答案 (1)
- VIP专区 (1)
其他 There are _NO_ standard sample rate for the samples used in modules. But most often the samples are
There are _NO_ standard sample rate for the samples used in modules.
But most often the samples are done on the rate called C-3 (which is
about 16574 Hz if you have a PAL machine). Sometimes drums are sampled
at A-3 (around 28 kHz), and some sounds are at ~8 kHz or anything else
to save space.
DSP编程 tms320lf2407a work with at45db161 "trace". buffer 8000 word copy from sram to at45. first page con
tms320lf2407a work with at45db161 "trace".
buffer 8000 word copy from sram to at45.
first page content: num save, to cyclewrite.
function:
read trace to sram, save trace to at45, read status,
and something else
游戏 DragonRaja Client source version 1.4+ this source allow players join in (Hades Warfield or Monsters
DragonRaja Client source version 1.4+
this source allow players join in (Hades Warfield or Monsters warfield).
When you compile in debug mode, it is GMtool.
else compile in release mode, it is Normal player.
编译器/解释器 how to add arrays * Use of const (constant) values. * Creation of vectors. * Passing
how to add arrays
* Use of const (constant) values.
* Creation of vectors.
* Passing vectors as function arguments.
* Reading from files of unknown size (monitoring istream status).
* Repetitive structures (while and for loops).
* The increment operators (++).
* Selection ...
通讯编程文档 Java has become a confusing world. Five years ago, there were few decisions to make once you start
Java has become a confusing world. Five years ago, there were few decisions to make once
you started programming in Java—you used AWT for graphical user interfaces, sockets for
network programming, and hacked together everything else you needed. Since then, though,
the APIs available for the Jav ...
Java编程 实现火星车,全部由java写成
实现火星车,全部由java写成,没有一个if-else,加上测试文件
编译器/解释器 编译课上做的小程序
编译课上做的小程序,用四种分析方法分别实现(LL1,算符优先,递归下降,简单词法分析)
完成对正则文法所描述的Pascal语言子集单词符号的词法分析程序。
<标识符>→字母︱ <标识符>字母︱ <标识符>数字
<无符号整数>→数字︱ <无符号整数>数字
<单字符分界符> →+ ︱- ︱* ︱ ︱(︱)
<双字符分界符>→<大于 ...
Linux/Unix编程 width = gdk_pixbuf_animation_get_width(ani) height = gdk_pixbuf_animation_get_height(ani) cu
width = gdk_pixbuf_animation_get_width(ani)
height = gdk_pixbuf_animation_get_height(ani)
current_frame_list = gdk_pixbuf_animation_get_frames(ani)
pixmap = gdk_pixmap_new(w->window, width, height, -1)
clean_pixmap = gdk_pixmap_new(w->window, width, height, -1)
if (w->style->bg_pixmap ...
编译器/解释器 pl0 文法 编译器 (1)扩充一维整型数组。 扩充var数组:VAR <数组标识名>(<下界>:<上界>)〈下界〉和〈上界〉可用常量标识名。 (2)扩充
pl0 文法 编译器
(1)扩充一维整型数组。
扩充var数组:VAR <数组标识名>(<下界>:<上界>)〈下界〉和〈上界〉可用常量标识名。
(2)扩充条件语句的功能使其为:IF<条件>THEN<语句>[ELSE<语句>]
(3)增加repeat重复语句:
REPEAT<语句>{ <语句>}UNTIL<条件> ...
系统设计方案 此题目是通过键盘来实现密码输入是否正确
此题目是通过键盘来实现密码输入是否正确,正确的时候数码管亮,否则发出报警声。
判断是按键还是干扰是非常有用的,它体现了一个系统的抗干扰能力。高低电平在瞬间的变换是很正常的,如果没有这条语句,系统很容易出错。
其中2秒是由定时器0来完成的。
在程序的定时器中断中,用switch代替了if else结构,使得程序的可读 ...