詞法分析程式(C)

2022-06-04 22:27:14 字數 1911 閱讀 1912

#include #include 

char

string[80],word[8

],ch;

inttype,p,i,n,sum;

char keyword[6]=; //

關鍵字陣列

void scaner(void

);

main()

while(ch!='#'

);

printf(

"單詞符號\t種別碼 \n

");

p=0;

do

}while(type!=0

);

} void scaner(void

)

p--;

type=10; //

先將以字母開頭的字元識別為識別符號

for(n=0;n<6;n++)

if(strcmp(word,keyword[n])==0) //

關鍵字陣列比較,相同則表示為關鍵字,種別碼即為下標值加一

}

else

if((ch>='

0')&&(ch<='9'

))

p--;

type=11

; }

else

//else語句內識別除關鍵字、識別符號、數字以外的其他字元

else

break

;

case

'<

':

word[i++]=ch;

ch=string[p++];

if(ch=='='

)

else

break

;

case

'>

':

word[i++]=ch;

ch=string[p++];

if(ch=='='

)

else

break

;

case'=

':

type=25

; word[i++]=ch;

break

;

case';

':

type=26

; word[i++]=ch;

break

;

case'(

':

type=27

; word[i++]=ch;

break

;

case')

':

type=28

; word[i++]=ch;

break

;

case'#

':

type=0

; word[i++]=ch;

break

;

default

: type=-1

;

break

; }

} word[i++]='

\0'; //

word字元陣列變字串

}

詞法分析程式

上課沒聽啥,一邊看書,一邊做的。基本上,老師的要求是實現了,能把乙個句子 也可以是一整個程式,但還不完善,由於時間急,很多情況來不及考慮了 中的單詞項分析出它是保留字,還是識別符號,運算子等等。開始是在控制台下做得,也比較純正 lex.h ifndef lex h define lex h incl...

詞法分析程式

include include char scanin 300 scanout 300 extern int testscan char scanin 300 scanout 300 file fin,fout 指向輸入輸出檔案的指標 int main include include include...

詞法分析程式

include include void fenxi char c,char b void word char a void number char a int i 定義全域性變數i int s 1 用來記錄是否存在非法字元 main printf n void number char a 對數字字...