第五章 语义分析1. 试写出下面类型的内部表示:(1) array15 of array110 of record i:integer;b:booleanend(2) record r: record x: real;y: integer end;a: array110 of booleanend答案:(1)(2 )5.10 设当前层数为L,可用偏移量Offset 值为101,具有下面程序,写出本层符号表的内容。const m=333;n=444;type at=array110 of real;rt=record i,j:integer end;VAR a,b:at;x,y:real;答案:类型的内部表示:5.11 设当前层数为L,当前偏移量为Offset,且有下面程序段,写出符号表内容,其中 at 见2 题。var x,y:at;function f( a:at;var b:at;var x:real):integer;