PL/0编译程序的语法分析实验报告

时间:2011-11-04 11:36:06
【文件属性】:

文件名称:PL/0编译程序的语法分析实验报告

文件大小:147KB

文件格式:PDF

更新时间:2011-11-04 11:36:06

语法分析

PL/0源程序 //PL0.txt const a=10; var b,c; procedure p; begin c:=b+a end; begin read(b); while b#0 do begin call p;write(2*c);read(b) end end. //outputfile.txt constsym, ident, a eql, number, 10 semicolon, varsym, ident, b comma, ident, c semicolon, proceduresym, ident, p semicolon, beginsym, ident, c becomes, ident, b plus, ident, a endsym, semicolon, beginsym, readsym, lparen, ident, b rparen, semicolon, whilesym, ident, b neq, number, 0 dosym, beginsym, callsym, ident, p semicolon, writesym, lparen, number, 2 times, ident, c rparen, semicolon, readsym, lparen, ident, b rparen, endsym, endsym,


网友评论

  • 功能挺完整的
  • 可以用的 感谢分享
  • 很全,还算完整