CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - if else

搜索资源列表

  1. 123

    0下载:
  2. 三子连珠模仿五子棋的形式,有一方三子连成一线即获胜。 程序设计要求: (1) 玩家可以设置棋盘的大小,即在游戏开始时输入一变量n(n=3~9),使棋盘的大小为n×n。 (2) 本程序有if-else选择语句来判断获胜者,如果棋盘变大这将非常繁琐,现要求将这一功能用循环语句实现,且适用于任意大小的棋盘。 (3) 可以设置悔棋功能,要求任意方可以在对方下棋后悔改一步,即将对方当前步和本方上一步删除,本方重新下棋。 -Three sons Lianzhu Gobang im
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:3037
    • 提供者:陈朋
  1. Wp

    0下载:
  2. IF-ELSE条件语句的翻译程序设计(简单优先法、输出三地址表示)
  3. 所属分类:Compiler program

    • 发布日期:2017-05-07
    • 文件大小:1235663
    • 提供者:苏三
  1. 11

    0下载:
  2. if-else条件语句翻译,使用LL(1)文法,中间产生式为四元式-if-else conditional statements translation, the use of LL (1) grammar, the middle of production for the four-type
  3. 所属分类:Compiler program

    • 发布日期:2017-04-24
    • 文件大小:105832
    • 提供者:周折
  1. 33

    0下载:
  2. if-else条件语句翻译,使用LL(1)文法,中间产生式为四元式-if-else conditional statements translation, the use of LL (1) grammar, the middle of production for the four-type
  3. 所属分类:Compiler program

    • 发布日期:2017-05-07
    • 文件大小:1033112
    • 提供者:周折
  1. Compiler

    0下载:
  2. if-else条件语句翻译,使用LL(1)文法-if-else conditional statements translation, the use of LL (1) grammar
  3. 所属分类:Compiler program

    • 发布日期:2017-05-07
    • 文件大小:1084135
    • 提供者:周折
  1. Compile

    0下载:
  2. 此课设是if else 条件语句的翻译程序. 功能说明如下: 1.整体词法分析; 2.if else语法分析,递归下降法. 3.三地址形式代码格式输出; 4.变量符号表的实现,即先定义变量才可以使用; 5.出错提示,具体行数出错提示; 6.作用域初步设计.-This lesson is that if else conditional statements of the translation process. Functions as follows:
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:38202
    • 提供者:卡哇伊
  1. ifelse

    0下载:
  2. 此程序是对条件语句进行翻译,输入一个条件语句,例如:if B then C1 else C2,先进行词法分析,词法分析的主要任务是:从左到右逐个字符地对源程序进行扫描,产生一个个的单词符号,把作为字符串的源程序改造成为单词符号串的中间程序,词法分析是编译的基础,词法分析的功能是输入源程序,输出单词符号(关键字,标识符,常数,运算符,界符),词法分析完成之后,再进行LL(1)语法分析,语义分析,最后输出四元式(语法分析,属性文法,四元式的相关知识技术描述如下)-This procedure is
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:74841
    • 提供者:李伟霞
  1. step1

    0下载:
  2. 词法分析程序,次程序实现了if else语句的标准输入-Lexical analysis program, sub-program if else statement of the standard input
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:1061
    • 提供者:小崔
  1. qd

    0下载:
  2. 本例要求判别键盘输入字符的类别。可以根据输入字符的ASCII码来判别类型。由ASCII码表可知ASCII值小于32的为控制字符。 在“0”和“9”之间的为数字,在“A”和“Z”之间为大写字母, 在“a”和“z”之间为小写字母,其余则为其它字符。 这是一个多分 支选择的问题,用if-else-if语句编程,判断输入字符ASCII码所在的范围,分别给出不同的输出。例如输入为“g”,输出显示它为小写字符。 -Requirements in this case determine the typ
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:2283
    • 提供者:lili
  1. byyl

    0下载:
  2. 编译原理课程设计 单分支语句 递归下降程序 IF-else-Principles of curriculum design to compile a single branch recursive descent statement IF-else
  3. 所属分类:Compiler program

    • 发布日期:2017-04-17
    • 文件大小:125893
    • 提供者:张金
  1. 3_grammar

    0下载:
  2. C写的一个语法分析器,输入可包含main,int,void,if,else,do,while几个关键字,算符可包括+,-,*,/,++,--,==,!=,<,>,<=,>=,输出求解过程-Write a C parser, type may include main, int, void, if, else, do, while a number of keywords, operators may include+,-,*,/,++,--,==, solving pro
  3. 所属分类:Compiler program

    • 发布日期:2017-04-05
    • 文件大小:12790
    • 提供者:李子超
  1. bianyiyuanli

    0下载:
  2. FOR循环语句的翻译程序设计(简单优先法、输出四元式),写出符合给定的语法分析方法的文法及属性文法。 完成题目要求的中间代码四元式的描述。 写出给定的语法分析方法的思想,完成语法分析和语义分析程序设计。 编制好分析程序后,设计若干用例,上机测试并通过所设计的分析程序。-FOR loop of the translation process design (a simple priority method, the output quaternion type), written in
  3. 所属分类:Project Design

    • 发布日期:2017-03-29
    • 文件大小:91834
    • 提供者:warmorange
  1. bianyikeshe_hsh-6.18_final

    1下载:
  2. 编译原理—课程设计—if else语句LL(1)方法分析,输出四元式-Compiler Construction Principles- curriculum design-if else statements LL (1) methods of analysis, the output quaternion type
  3. 所属分类:Compiler program

    • 发布日期:2017-04-05
    • 文件大小:214448
    • 提供者:hsh
  1. LexicalAnalysis

    0下载:
  2. 此为词法分析程序,词法分析要求:简单词法文法: <关键字>->main|int|char|string|while|do|if|else|for <标识符>->L|<标识符>L|<标识符>D <整数>->D|<整数>D <运算符>->+|-|*|/|=|<|>|<=|>=|<>|= = <界符>->( | )
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:2424
    • 提供者:nick
  1. verilogif_else

    0下载:
  2. 这是Verilog语言的if else 语句的优化,不同的写法,编译出来,结果会有很多不同。请大家自己斟酌。-see the Chinese
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-04
    • 文件大小:83591
    • 提供者:张锴
  1. 3

    0下载:
  2. Example IF-Else, Switch case, Fill array, tables
  3. 所属分类:Java Develop

    • 发布日期:2017-04-25
    • 文件大小:9541
    • 提供者:rabu
  1. flowcontrol

    0下载:
  2. 流程控制学习程序,包括多层嵌套的IF-ELSE语句实例、正整数分解质因数、判断素数等-Process control learning process, including multiple nested IF-ELSE statements instance, a positive integer prime factor decomposition to determine prime numbers, etc.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-13
    • 文件大小:1736
    • 提供者:SY
  1. PL0CandJava

    1下载:
  2. N.Wirth 编写的“PL/0 语言的编译程序”,包含C和Java两个版本,而且内附改进后可以实现if else 、for 以及 dowhile(repeat) until等之前的编译器没有的功能。-This is a compiler for “PL/0”. The development environment is C and Java. You can use it to compile the "PL/0" included "for ","if else","dowhile
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:841170
    • 提供者:nicholas
  1. if_else

    0下载:
  2. if else 循环语句的翻译方法用c++写的,有很好的局面的 和指导意义的-use the c++ to translate the if else scentece
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:213796
    • 提供者:zhangqi
  1. bianyi

    0下载:
  2. IF-ELSE条件语句的翻译程序设计(LL(1)法、输出三地址表示)-IF-ELSE conditional statements translation of program design (LL (1) method, the output three-address indicated)
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:15976
    • 提供者:
« 1 2 3 45 6 7 8 9 10 ... 31 »
搜珍网 www.dssz.com