搜索结果
找到约 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)
Linux/Unix编程 调用方法简单
调用方法简单,支持if else include之类的标签,可以包含扩展函数,没有引入外部文件,减少了io操作,比smarttemplate快了平均2-3毫秒,单纯加载模版文件,不设置任何变量lightemplate平均0.3毫秒左右,smarttemplate至少要1毫秒。
其他 * TFTP client compatible with RFC-1350 * compile under visiual c++ or borland c++ * author email:
* TFTP client compatible with RFC-1350
* compile under visiual c++ or borland c++
* author email: yuyushine@163.com
***************************************************/
#define _VC /* if compile under visiual c++ else undefine this*/
#include <stdio.h>
#include <winsock.h>
#include <conio.h>
...
软件工程 This book is intended to be a complete and useful reference to the unified modeling language (UML) f
This book is intended to be a complete and useful reference to the unified modeling language (UML) for the developer,architect,project manager,sysetem engineer,programmer,analyst,contracting officer,customer,and anyone else who needs to specify,design,build,or understand complex software system.
编译器/解释器 设计题三:条件语句的语法分析及语义分析程序设计。 1.目的 通过设计、编制、调试一个语法及语义分析程序
设计题三:条件语句的语法分析及语义分析程序设计。
1.目的
通过设计、编制、调试一个语法及语义分析程序,加深对语法及语义分析原理的理解。
2.设计内容及要求
IF 〈布尔表达式〉 THEN 〈赋值语句〉 ELSE 〈赋值语句〉
其中
(1)可以选择递归下降法、LL(1)、算符优先分析法、LR法完成以上任务,中间代码选 ...
C/C++语言编程 toj 4022源代码
#include <iostream>
using namespace std;
int main(){
int t;
cin>>t;
while(t--){
long long n;
cin>>n;
if(n%2==1)
cout<<(n*n-1)/4<<endl;
else if (n%4==0)
cout <<(n*n)/4-1<<endl;
else{
if(n==2)
cout<<1<<endl;
else{
long long k=n/2-1;
cout <<k*k+2*k-3<<endl;
}
...
Linux/uClinux/Unix编程 两个链表的交集
两个链表的交集
#include<stdio.h>
#include<stdlib.h>
typedef struct Node{
&nbsp; int data;
&nbsp; struct &nbsp;Node *next;
}Node;
void initpointer(struct Node *p){
&nbsp; p=NULL;
}
int &nbsp;printlist(struct Node* head){
&nbsp; int flag=1;
&nbsp; head=head->next;
&nbsp; /*
&nbsp; 因为标记1的地 ...
技术书籍 c语言深度剖析
第一章关键字...................................................................................................................................9
1.1,最宽恒大量的关键字----auto..........................................................................................11
1.2,最快的关键字---- register. ...
C/C++语言编程 文件Java排课系统的报告
My JSP 'TeacherMain.jsp' starting page
var $=function(id) {
return document.getElementById(id);
}
function show_menu(num){
for(i=0;i
接口技术 net_tcp.h
/*
*********************************************************************************************************
* &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; uC/TCP-IP V2
* &nbsp; &nbsp; &nbsp; ...