基本介紹
- 中文名:PASCAL語言列表
- 外文名:List of PASCAL languages
- 特點:6點
- 基本語法:7種
- 語言符號:3種
- 套用學科:信息科學
PASCAL語言的特點
- Pascal是一種強類型的語言。
- 它提供了廣泛的錯誤檢查。
- 它提供了多種數據類型,如數組,記錄,檔案和集合
- 它提供了各種不同的編程結構
- 它支持結構化編程功能和程式
- 它支持面向對象編程
PASCAL語言重要性
- Skype
- Total Commander
- TeX
- Macromedia Captivate
- Apple Lisa
- Various PC Games
- Embedded Systems
PASCAL語言的基本語法
變數
函式/過程
注釋
大小寫敏感性
Pascal語句
保留字
and | array | begin | case | const |
div | do | downto | else | end |
file | for | function | goto | if |
in | label | mod | nil | not |
of | or | packed | procedure | program |
record | repeat | set | then | to |
type | until | var | while | with |
字元集
- All upper case letters (A-Z)
- All lower case letters (a-z)
- All digits (0-9)
- Special symbols - + * / := , . ;. () [] = {} ` white space
PASCAL語言符號
基本符號
保留字
- 程式、函式、過程的符號:program、function、procedure;
- 說明部分的專用定義符號:array、const、file、lable、packed、var、record、set、type、of;
- 語句專用符號:case、do、downto、else、for、goto、if、repeat、then、to、until、while、with、forward;
- 運算符號:and、not、or、in、div、mod;
- 分隔設定號:begin、end;
- 空指針常量:NULL。
標識符
- 標準常量:false,true,maxint.
- 標準類型:integer,real,char,string,boolean,text.
- 標準檔案:input,output.
- 標準函式:abs,arctan,chr,cos,eof,eoln,exp,ln,odd,ord,pred,round,sin,sqr,sqrt,succ,trunc.
- 標準過程:get,new,pack,page,put,read,readln,reset,rewrite,unpack,write,writeln.
- real 實數
- integer整型
- longint長整型
- shortint 短整型
- int64 超長整型
- single 單精度
- double 雙精度
- char 單個字元
- string字元串型
- ansistring記憶體字元串型
- int64 -2^63-2^63-1的整數類型
- qword無符號的整型(0~2^64-1)
- begin 開始
- end 結束
- if 如果
- for ... to .... do 循環
- read 輸入 (readln 輸入並換行)
- write 輸出(writeln 並換行輸出)
- then 那么(常與if連用)
- else 否則 (常與if和then連用,當if後面的條件為假時,程式就會執行else後的語句)
- boolean布爾型
- true 真
- false 假