source.txt
上传用户:ab16833
上传日期:2013-05-29
资源大小:10k
文件大小:0k
源码类别:

词法分析

开发平台:

C#

  1. PROGRAM source;
  2. {this little source program is used to 
  3.  illustrate compiling procedure.}
  4. VAR x,y,z: integer;
  5.     a: integer;
  6. Begin
  7. {this program has only four executable statements.}
  8. x:=23+5;
  9. z:=x DIV -3;
  10. y:=z+18*3;
  11. a:=x+(y-2) DIV 4;
  12. End