国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

COP 3402代做、代寫Java/C++程序
COP 3402代做、代寫Java/C++程序

時間:2025-06-15  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



University of Central Florida
School of Electrical Engineering & Computer Science
COP 3402: System Software
Summer 2025

Homework #2 (Lexical Analyzer)
(Team max. two students) 

Due Sunday, June 14th, 2025 by 11:59 p.m. 

Goal:
In this assignment your team have to implement a lexical analyzer for the programming language PL/0. Your program must be capable to read in a source program written in PL/0, identify some errors, and produce, as output, the source program, the source program lexeme table, and the token list. For an example of input and output refer to Appendix A. In the next page we show you the grammar for the programming language PL/0 using the extended Backus-Naur Form (EBNF).

You will use the given Context Free Grammar (see next page) to identify all symbols the programming language provides you with.  These symbols are shown below:

Reserved Words: const, var, procedure, call, begin, end, if, fi, then, else, while, do, read, write.        
Special Symbols: ‘+’, ‘-‘, ‘*’, ‘/’, ‘(‘, ‘)’, ‘=’, ’,’ , ‘.’, ‘ <’, ‘>’,  ‘;’ , ’:’ .
Identifiers: identsym = letter (letter | digit)* 
Numbers: numbersym = (digit)+
Invisible Characters: tab, white spaces, newline
Comments denoted by: /* . . .   */

Refer to Appendix B for a declaration of the token symbols that may be useful.

In this assignment, you will not check syntax.

Example1: program written in PL/0:

var x, y;
x := y * 2.

Use these rules to read PL/0 grammar expressed in EBNF.

1.- [ ] means an optional item, 
2.- { } means repeat 0 or more times.
3.- Terminal symbols are enclosed in quote marks.
4.- Symbols without quotes are called no-terminals or a syntactic class.
5.-A period is used to indicate the end of the definition of a syntactic class.
6.-The symbol ‘::=’ is read as ‘is defined as’; for example, the following syntactic class:

program ::= block ".".  

must be read as follows: 
a program    is defined as    a block followed by a   dot.
   program             ::=                   block                                ".".  

Context Free Grammar for PL/0 expressed in EBNF.

program ::= block "." . 
block ::= const-declaration  var-declaration  proc-declaration statement.    
const-declaration ::= [ “const” ident "=" number {"," ident "=" number} “;"].    
var-declaration  ::= [ "var" ident {"," ident} “;"].
proc-declaration::= {"procedure" ident ";" block ";" } .
statement   ::= [ ident ":=" expression
| "call" ident
              | "begin" statement { ";" statement } "end" 
              | "if" condition "then" statement "fi"
        | "if" condition "then" statement “else" statement "fi"
             | "while" condition "do" statement
        | “read” ident
| “write” ident
              | empty ] . 
 
condition ::=  expression  rel-op  expression.
  
rel-op ::= "="|“<>"|"<"|"<="|">"|">=“.
expression ::= term { ("+"|"-") term}.
term ::= factor {("*"|"/") factor}. 
factor ::= ident | number | "(" expression ")“.

In this assignment, you will identify valid PL/0 symbols and then translate them into an internal representation called “Tokens”.

Lexical Grammar for PL/0 expressed in EBNF.

ident ::= letter {letter | digit}.
letter ::= "a" | "b" | … | "y" | "z" | "A" | "B" | ... | "Y" | "Z".
number ::= digit {digit}.
digit ::= "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9“.

Lexical Conventions for PL/0:
A numerical value is assigned to each token (internal representation) as follows: 
skipsym = 1, identsym = 2, numbersym = 3, plussym = 4, minussym = 5, 
multsym = 6,  slashsym = 7, fisym = 8,  eqlsym = 9, neqsym = 10, lessym = 11, leqsym = 12, gtrsym = 13, geqsym = 14, lparentsym = 15, rparentsym = 16, commasym = 17, semicolonsym = 18, periodsym = 19, becomessym = 20, 
beginsym = 21, endsym = 22, ifsym = 23, thensym = 24, whilesym = 25, dosym = 26, callsym = 27, constsym = 28, varsym = 29, procsym = 30, writesym = 31, 
readsym = 32, elsesym = 33.


Example2: program written in PL/0:

var w, x;
read w;
begin
   x:= 4;
   if w > x then
    w:= w + 1
   else
    w:= x;
   fi
end
write w. 


Remember, in this assignment, you will not check syntax.

For the scanner 
x := y + 7;          and          + 7 ; x y :=   are valid inputs
Constraints:
Input:
1.Identifiers can be a maximum of 11 characters in length.
2.Numbers can be a maximum of 5 digits in length.
3.Comments should be ignored and not tokenized.
4.Invisible Characters should be ignored and not tokenized.

Output:
1.The token separator in the output's Lexeme List (Refer to Appendix A) can be either a space or a bar ('|').
2.In your output's Lexeme List, identifiers must show the token and the variable name separated by a space or bar.
3.In your output's Token list, numbers must show the token and the value separated by a space or bar. The value must be transformed into ASCII Representation.
4.Be consistent in output. Choose either bars or spaces and stick with them.
5.The token representation of the Token list will be used in the Parser (HW3). So, PLAN FOR IT!

Detect the Following Lexical Errors:

1.Number too long.
2.Name too long.
3.Invalid symbols.

When an error is detected, an error message must be printed, and the scanner continues running. For example:

lexeme                token type
$        “Error: invalid symbol” 


Hint: You could create a transition diagram (DFS) to recognize each lexeme on the source program and once accepted generate the token, otherwise emit an error message.
 
Submission Instructions:
Submit to Webcourse:
1. Source code. (lex.c) 
2. Instructions to use the program in a readme document.
3. One run containing the input file (Source Program), and output file. The output file must show:  
 (Source,  Lexeme Table(lexeme-token), Token List)

    When errors are found, do not print out the Token list.

Appendix A:

If the input is:
var x, y;
begin
    y := 3;
    x := y + 56;
end.

The output will be:
Source Program:
var x, y;
begin
Token List:
29 2 x 17 2 y 18 21 2 y 20 3 3 18 2 x 20 2 y 4 3 56 18 22 19
 
Appendix B:

Declaration of Token Types:
typedef enum { 
skipsym = 1, identsym, numbersym, plussym, minussym,
multsym,  slashsym, fisym, eqsym, neqsym, lessym, leqsym,
gtrsym, geqsym, lparentsym, rparentsym, commasym, semicolonsym,
periodsym, becomessym, beginsym, endsym, ifsym, thensym, 
whilesym, dosym, callsym, constsym, varsym, procsym, writesym,
readsym , elsesym} token_type;

Example of Token Representation:
“29  2 x  17  2 y 18  21  2 x 21  2 y 4  3 56 18  22  19”

Is Equivalent:
varsym identsym  x  commasym  identsym  y  semicolonsym  beginsym  identsym  x
becomessym identsym y plussym numbersym 56 semicolonsym endsym periodsym

Appendix C:

Example of a PL/0 program: 
const m = 7, n = 85;  
var  i,x,y,z,q,r;  
procedure mult; 
   var a, b;  
  begin 
     a := x;  b := y; z := 0;   
     while b > 0 do    
     begin 
        if x =1 then z := z+a fi;       
        a := 2*a; 
        b := b/2;     
     end   
  end;

begin
  x := m;
  y := n;
  call mult;
end.

Find out the output for this example!

Rubric:

Integrity:
Plagiarism or Resubmission of Old Programs: -100 points
Compilation & Execution:
Programs That Don't Compile: -100 points
Program Cannot Reproduce any output in the terminal: -10 points
Program is white-space dependent: -10 points
For example, a+b should be properly tokenized.
For example, 4hello is two tokens: a number and an identifier.
Submission Files:
Missing lex.c: -100 points
Missing readme File: -5 points
Missing Input or Output File: -5 points
Partial Missing: -2.5 points for either input or output file
Lexical Error Detection:
Not Detecting All Three Lexical Errors: -15 points
Each lexical error detection is worth 5 points.
Output Formatting:
Output Significantly Unaligned with Appendix A: -5 points
Late Submissions:
One Day Late: -10 points
Two Days Late: -20 points

No email submission will be accepted. 

If an extension is given, Late policy does not apply.

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp


 

掃一掃在手機打開當前頁
  • 上一篇:代寫MATH3831、代做Python/C++程序
  • 下一篇:618 NMN品牌終極戰!三井制藥NMN現象級表現成為養顏抗衰領域定海神針
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产精品入口尤物| 亚洲av首页在线| 欧美精品久久一区二区| 欧美污视频久久久| 久久综合入口| 亚洲字幕一区二区| 国产美女搞久久| 久草热视频在线观看| 亚洲v日韩v欧美v综合| 99在线观看| 亚洲蜜桃在线| 高清国产一区| 欧美激情在线有限公司| 国产一区二区视频在线观看| 国产精品美女在线观看| 欧美日韩视频在线一区二区观看视频 | 国产日韩欧美视频| 久久天天躁狠狠躁夜夜躁2014| 极品美女扒开粉嫩小泬| 国产精品视频免费在线观看| 日韩免费在线看| 国产激情视频一区| 秋霞成人午夜鲁丝一区二区三区| 91精品国产91久久久| 在线国产99| 国产精品一久久香蕉国产线看观看| 精品不卡一区二区三区| 国产欧美精品xxxx另类| 一区二区欧美日韩| 久久亚洲精品无码va白人极品| 亚洲xxxx做受欧美| 国产a级黄色大片| 奇米成人av国产一区二区三区| 久久久久久中文| 加勒比成人在线| 国产精品久久久久久av福利软件| 韩国精品久久久999| 国产精品国产三级国产aⅴ9色 | 日韩在线视频线视频免费网站| 日韩精品一区二区免费| 精品国偷自产在线视频| 男人的天堂成人| 久久综合免费视频| 不卡一卡2卡3卡4卡精品在| 在线亚洲美日韩| 99视频在线免费播放| 手机看片日韩国产| 精品久久久91| 国产奶头好大揉着好爽视频| 亚洲欧洲国产精品久久| 久久av二区| 精品一卡二卡三卡四卡日本乱码| 欧美激情区在线播放| 久久久天堂国产精品女人| 欧美做暖暖视频| 精品麻豆av| 91免费欧美精品| 日韩欧美视频一区二区| 国产精品电影网| 国产精品一色哟哟| 欧美一区二区三区……| 国产精品视频免费一区二区三区| 国产精品一区二区三区免费视频 | 欧美亚州在线观看| 精品国产一区二区三区久久久久久 | 色综合影院在线观看| 久久精品国产免费观看| 国产一区免费在线| 午夜精品久久久久久久无码| 久久精品91久久久久久再现| 国产美女精品在线观看| 日韩欧美精品在线观看视频| 久久亚洲影音av资源网 | 欧美激情久久久久久| 国产高清自拍99| 国产一级特黄a大片99| 日本欧美国产在线| 九九九久久国产免费| 九一免费在线观看| 国产精品自拍偷拍| 欧美在线播放一区二区| 欧美激情久久久久| 国产成人精品一区二区三区| av在线不卡一区| 黄色国产一级视频| 日本一区二区三区四区在线观看 | 国产精品毛片a∨一区二区三区|国| 国产精品91一区| 国产视频一区二区三区四区 | 久久天天躁狠狠躁夜夜av| 91精品免费视频| 国产日韩av高清| 欧美精品一区免费| 日本一欧美一欧美一亚洲视频| 欧美黄网免费在线观看| www亚洲精品| 国产精品 日韩| 国产美女扒开尿口久久久| 欧美不卡1区2区3区| 日韩精品久久久| 中文字幕在线中文字幕日亚韩一区| 国产精品女人网站| 日韩在线视频免费观看| 久热免费在线观看| 成人精品水蜜桃| 国产淫片免费看| 欧美人与动牲交xxxxbbbb| 日本高清+成人网在线观看| 亚洲色精品三区二区一区| 久久在线精品视频| 久久精品国产亚洲精品2020| 久久精品99| 久久久亚洲天堂| 99电影在线观看| 操人视频欧美| 成人精品水蜜桃| 国产剧情久久久久久| 国产一二三区在线播放| 免费精品视频一区二区三区| 欧美性大战久久久久| 欧美在线视频导航| 欧美一区免费视频| 欧美亚洲伦理www| 欧美日韩一区二区视频在线| 欧美在线播放一区二区| 欧美一区免费视频| 欧美亚洲一级片| 欧美日韩黄色一级片| 欧美激情www| 国模无码视频一区二区三区| 欧美国产二区| 免费在线观看亚洲视频| 激情视频在线观看一区二区三区| 欧美不卡福利| 美女黄毛**国产精品啪啪| 国产中文字幕视频在线观看| 国产区一区二区| 国产精品夜色7777狼人| 超碰97网站| 久久免费少妇高潮久久精品99| 久久综合久久网| 久久久久久人妻一区二区三区| 色视频www在线播放国产成人| 久久人人爽人人爽人人片亚洲| 国产精品美女久久久久av福利| 欧美精品在线观看| 亚洲午夜精品一区二区三区| 欧美一区二区视频17c| 日韩人妻一区二区三区蜜桃视频| 日韩久久久久久久久久久久| 欧美精品久久| 国产麻豆日韩| 69精品丰满人妻无码视频a片| 国产福利一区视频| 国产精品视频区1| 国产精品成人av性教育| 中文一区一区三区免费| 午夜精品一区二区三区在线观看 | 国产一区二区不卡视频 | 日本婷婷久久久久久久久一区二区 | 日本高清不卡三区| 欧美精品123| 成人久久一区二区| 成人国产精品一区| 久久香蕉综合色| 国产精品海角社区在线观看| julia一区二区中文久久94| chinese少妇国语对白| 国产成人小视频在线观看| 一区二区三区久久网| 精品日本一区二区三区在线观看| 久久这里只有精品23| 日本精品久久久久影院| 国产日韩欧美在线看| 久久国产一区二区| 97久久国产精品| 99电影网电视剧在线观看| 日韩最新在线视频| 欧美日韩999| 视频在线精品一区| 国模视频一区二区| 91免费看片网站| 国产精品丝袜白浆摸在线| 亚洲综合色av| 欧美h视频在线| 久久综合给合久久狠狠色| 国产精品欧美风情| 午夜精品一区二区三区在线观看 | 国产精品成人一区二区三区吃奶| 亚洲最大av在线| 欧美在线免费视频| 91麻豆国产语对白在线观看| 国产精品欧美亚洲777777| 欧美一区二区大胆人体摄影专业网站| 国产在线观看精品一区二区三区| 久操手机在线视频| 亚洲一区精品电影| 国产一区二区三区奇米久涩 | 亚洲影院污污.| 狠狠爱一区二区三区|