主题:编译原理实验
[size=2][/size][color=008000]简单记号扫描程序[/color]
要求: 读取源文件并列出它们找到的记号(单词)简单记号:单词,数,句点.
其中:单词由字母组成,数由数字组成. 规定输入文件必须以句点作为结束符!
例如:
输入: The sum of 123 and 456 is 579.
将产生输出如下:
The word of word
sum word 123 number period
要求: 读取源文件并列出它们找到的记号(单词)简单记号:单词,数,句点.
其中:单词由字母组成,数由数字组成. 规定输入文件必须以句点作为结束符!
例如:
输入: The sum of 123 and 456 is 579.
将产生输出如下:
The word of word
sum word 123 number period