输入数据示例: while (a3+15)>0xa do if x2 = 07 then while y<z do y = x * y / z; 正确结果:等效的三地址代码序列 L1: t1 := a3 + 15 if t1 > 10 goto L2 goto L0 L2: if x2 = 7 goto L3 goto L1 L3: if y < z goto L4 goto L1 L4: t2 = x * y t3 = t2 / z y = t3 goto L3 goto L1 L0: // S.next
2021-03-29 13:05:16
3KB
实验二:语法
1