搜索结果

找到约 156 项符合 ELSE 的查询结果

Linux/Unix编程 调用方法简单

调用方法简单,支持if else include之类的标签,可以包含扩展函数,没有引入外部文件,减少了io操作,比smarttemplate快了平均2-3毫秒,单纯加载模版文件,不设置任何变量lightemplate平均0.3毫秒左右,smarttemplate至少要1毫秒。
https://www.eeworm.com/dl/619/476560.html
下载: 23
查看: 1020

其他 * 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> ...
https://www.eeworm.com/dl/534/477519.html
下载: 120
查看: 1113

软件工程 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.
https://www.eeworm.com/dl/540/492967.html
下载: 41
查看: 1069

编译器/解释器 设计题三:条件语句的语法分析及语义分析程序设计。 1.目的 通过设计、编制、调试一个语法及语义分析程序

设计题三:条件语句的语法分析及语义分析程序设计。 1.目的 通过设计、编制、调试一个语法及语义分析程序,加深对语法及语义分析原理的理解。 2.设计内容及要求 IF 〈布尔表达式〉 THEN 〈赋值语句〉 ELSE 〈赋值语句〉 其中 (1)可以选择递归下降法、LL(1)、算符优先分析法、LR法完成以上任务,中间代码选 ...
https://www.eeworm.com/dl/628/494451.html
下载: 198
查看: 1179

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; } ...
https://www.eeworm.com/dl/502385.html
下载: 1
查看: 32

Linux/uClinux/Unix编程 两个链表的交集

两个链表的交集 #include<stdio.h> #include<stdlib.h> typedef struct Node{   int data;   struct  Node *next; }Node; void initpointer(struct Node *p){   p=NULL; } int  printlist(struct Node* head){   int flag=1;   head=head->next;   /*   因为标记1的地 ...
https://www.eeworm.com/dl/502540.html
下载: 1
查看: 46

技术书籍 c语言深度剖析

第一章关键字...................................................................................................................................9 1.1,最宽恒大量的关键字----auto..........................................................................................11 1.2,最快的关键字---- register. ...
https://www.eeworm.com/dl/502642.html
下载: 4
查看: 110

资料/手册 pl0期末实验报告

plo的扩展包括一维数组的扩展,else保留字的扩展
https://www.eeworm.com/dl/507602.html
下载: 2
查看: 14

C/C++语言编程 文件Java排课系统的报告

My JSP 'TeacherMain.jsp' starting page var $=function(id) { return document.getElementById(id); } function show_menu(num){ for(i=0;i
https://www.eeworm.com/dl/507625.html
查看: 31

接口技术 net_tcp.h

/* ********************************************************************************************************* *                                             uC/TCP-IP V2 *       ...
https://www.eeworm.com/dl/508248.html
查看: 56