国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女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在线免费观看
    久久亚洲综合国产精品99麻豆精品福利 | 亚洲一区二区三区精品动漫 | 亚洲国产精品久久久久婷婷老年| 欧美日韩国产精品一卡| 国产成人精品日本亚洲专区61| 国产精品极品尤物在线观看| 青青草影院在线观看| 国产ts一区二区| 午夜精品一区二区三区在线视频 | 一区二区在线不卡| 国产日韩在线看片| 欧美久久精品一级黑人c片| 美女黄毛**国产精品啪啪| 国产精品欧美亚洲777777| 欧美在线观看一区二区三区| 久操网在线观看| 日韩欧美亚洲v片| 日韩专区中文字幕| 日本一区二区三区视频在线观看| 91精品国产免费久久久久久| 午夜精品免费视频| 国产高清av在线播放| 欧美一区二区高清在线观看| 久久久天堂国产精品女人| 亚洲a在线观看| 久久免费成人精品视频| 视频一区在线免费观看| 国产高潮呻吟久久久| 日本精品视频一区| zzjj国产精品一区二区| 霍思燕三级露全乳照| 欧美久久久精品| 99国产精品白浆在线观看免费| 欧美激情视频在线观看| 不卡中文字幕在线| 亚洲a级在线观看| 久久精品国产一区二区三区不卡| 青青在线视频免费观看| 国产精品久久久久久久久久三级| 国产一区高清视频| 亚洲一区二区三区免费观看| 久久久综合香蕉尹人综合网| 热99久久精品| 欧美成人精品在线观看| 成人久久精品视频| 日本在线观看a| 日韩中文字幕亚洲| 毛片一区二区三区四区| 国产精品对白刺激久久久| 国产精品自拍偷拍| 日韩一级片一区二区| 久久精品国产久精国产思思| 国产一区红桃视频| 亚洲不卡1区| 国产精品网站视频| 成人羞羞国产免费| 日韩精品一区二区三区四| 不卡av日日日| 国产对白在线播放| 国产一区视频免费观看| 亚洲精品9999| 久久精品一偷一偷国产| 成人免费视频a| 日本精品免费| 精品国产乱码一区二区三区四区| 91精品国产高清久久久久久91| 欧洲午夜精品久久久| 欧美日韩高清区| 深夜精品寂寞黄网站在线观看| 免费av一区二区三区| 久久99亚洲热视| 日韩中文字幕在线看| 成人在线观看a| 欧美xxxx黑人又粗又长密月| 亚洲高清乱码| 欧美精品日韩三级| 久久99欧美| av片在线免费| 男人亚洲天堂网| 天堂精品一区二区三区| 久久成年人免费电影| 久久国产精品久久精品国产| 成人久久18免费网站图片| 黄色www在线观看| 日本成人黄色免费看| 一区二区三区四区欧美| 久久精品视频一| 91精品中国老女人| 国产日韩一区欧美| 欧美亚洲黄色片| 日韩av成人在线观看| 色综合久久天天综线观看| 精品国产美女在线| www.av一区视频| 国产一区玩具在线观看| 欧美专区在线观看| 日韩中文不卡| 亚洲黄色成人久久久| 欧美激情久久久久| 国产精品久久久久久久久久久久久| 国产爆乳无码一区二区麻豆| 国产精华一区二区三区| 成人av在线网址| 国产精品一 二 三| 国产精品永久在线| 国产女同一区二区| 国产日本一区二区三区| 国产专区一区二区三区| 欧美亚洲国产成人| 奇米一区二区三区四区久久| 日本香蕉视频在线观看| 无码人妻h动漫| 亚洲成人网上| 日韩一区不卡| 天天夜碰日日摸日日澡性色av| 中文字幕一区二区三区最新| 一区二区在线观| 一区二区三区av| 亚洲一区二区三区在线观看视频 | 成人动漫在线观看视频| 国产一区二区三区小说| 免费av网址在线| 国产又粗又长又爽视频| 国产最新免费视频| 国产一区二中文字幕在线看| 精品一区二区三区视频日产| 精品一区二区三区毛片| 国模精品系列视频| 国产在线拍偷自揄拍精品| 精品1区2区| 美女黄毛**国产精品啪啪| 欧美 日韩 亚洲 一区| 国模视频一区二区| 国产亚洲一区二区三区在线播放| 免费久久久久久| 国产一区二区在线视频播放| 国内精品久久久久久久果冻传媒| 国产资源在线视频| 国产精品一区二区3区| 91精品国产91久久久久青草| 69精品小视频| www.美女亚洲精品| 国产精品精品一区二区三区午夜版| 国产精品久久久久久久电影| 精品国产无码在线| 亚洲**2019国产| 色播亚洲婷婷| 欧美日产一区二区三区在线观看| 精品视频在线观看一区二区| 国产伦视频一区二区三区| 91av免费看| 久久久精品国产一区二区| 久久躁狠狠躁夜夜爽| 亚洲一区在线免费| 日韩美女中文字幕| 国产综合色香蕉精品| av在线不卡一区| 深夜福利国产精品| 欧美精品制服第一页| 亚洲精品成人a8198a| 欧美另类一区| 国产日韩欧美电影在线观看| 91精品国产自产在线老师啪| 日韩中文字幕精品视频| 麻豆国产va免费精品高清在线| 亚洲乱码一区二区三区| 欧日韩免费视频| 国产精品自拍首页| 久久久久久久免费| 精品不卡一区二区三区| 欧美一级片免费播放| 精品人伦一区二区三区| 99免费视频观看| 久热精品视频在线| 亚洲精品天堂成人片av在线播放| 欧美日本韩国在线| 国产精品一 二 三| 按摩亚洲人久久| 亚洲欧洲在线一区| 黄色激情在线视频| 国产激情美女久久久久久吹潮| 欧美xxxx做受欧美.88| 三年中国中文在线观看免费播放| 国产又黄又猛视频| 国产va亚洲va在线va| 欧美激情亚洲自拍| 欧美精品一区二区三区四区五区 | 痴汉一区二区三区| 国内精品伊人久久| …久久精品99久久香蕉国产| 另类专区欧美制服同性| 日本一区二区三区精品视频| 国产欧洲精品视频| 日韩中文字幕在线看| 亚洲一区二区三区四区中文| 麻豆蜜桃91| 国产成人精品优优av| 日韩在线第三页| 国产精品一区二区三区免费视频| 精品国产欧美一区二区三区成人|