-
-
PL0实验案例M.zip
广工编译原理Pl0实验:
1、实验报告,实验要求
2、pl0代码,扩展功能:else语句,++/--,+=/-=,*=//=
-
-
-
对PL0编译器进行了扩充
对PL0编译器进行了扩充增加注释,++,--,if语句增加else,repeat-until,for
-
pl0语法分析.docx
课程实验报告C语言版本
1.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.
2.词法 ...
-
-
PL0源代码(C语言版).doc
/*PL/0 编译系统C版本头文件 pl0.h*/ # define norw 13 //a number of reserved word /*关键字个数*/ # define txmax 100 //length of identifier table /*名字表容量*/ # define nmax 14 //max number of digits in numbers /*number的
-
PL0源代码(C语言版).docx
/*PL/0 编译系统 C 版本头文件 pl0.h*/ # define norw 13 //a number of reserved word /*关键字个数*/ # define txmax 100 //length of identifier table /*名字表容量*/ # define nmax 14 //max number of digits in numbers /*numbe
-
PL0源代码(C语言版).pdf
. /*PL/0 编译系统 C 版本头文件 pl0.h*/ # define norw 13 //a number of reserved word /* 关键字个数 */ # define txmax 100 //length of identifier table /* 名字表容量 */ # define nmax 14 //max number of digits in numbers /
-
-