基本程序结构和几个概念: 标识符 保留字 常量 变量 运算符 表达式 标准数据类型 Pacal语言程序结构 Program prog_name; var 变量申明; begin 程序体; end. 例如: program pname; const n=4; type arr=array [1..4] of integer; var i:integer; a:arr; begin for i:=1 to n do read(a[i]); readln; for i:=n downto 1 d
Object Pascal Language Guide 帮助文档 (英文,PDF) Chapter 1 Introduction 1-1 What’s in this manual? ...1-1 Using Object Pascal ...1-1 Typographical conventions ...1-2 Other sources of information ...1-2 Software registration and technical support ..1-3 Par
Pascal基本算法整理,学习用很好 1.数论算法 求两数的最大公约数 function gcd(a,b:integer):integer; begin if b=0 then gcd:=a else gcd:=gcd (b,a mod b); end ; 求两数的最小公倍数 function lcm(a,b:integer):integer; begin if a0 do inc(lcm,a); end; 素数的求法 A.小范围内判断一个数是否为质数: function prime (n: