当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

1372:FORCAL

题目描述
FORCAL is the programming language well known to programmers who are interested in compiler construction and especially to students attending Dr. C. Ompiler class. The FORCAL syntax is defined as follows:
The only data type is integer.

All identifiers are implicitly declared and are not longer than 32 characters. Identifiers are composed of letters, digits and underscores. At least one character of the identifier is not a digit.

Literals are strings of at most 8 digits.

Comments begin with -- and end at the end of the line in which they start.

Statement types are

Assignment:

identifier := expression

where expressions are constructed from identifiers, literals, operators +, -,

and parentheses as follows:

1) all identifiers and literals are expressions,

2) if a, b are expressions then a + b, a - b, +a, -a, (a) are expressions.

Input/Output:

read(List of identifiers);

write(List of expressions)

(Items in the list are separated by comma)

begin, end, read, and write are reserved words.

Each statement is terminated by a semicolon.

FORCAL is not case-sensitive, for example BegIN is the same keyword as beGin.

FORCAL tokens are defined to be: the identifiers or the literals or the symbols + - ( ) := ; , or the reserved words.


NOTES:

the assign operator is to be considered one FORCAL token,

spaces, tabs, end-of-lines are allowed between the tokens,

no part of any comment is a token,

successive tokens that are either identifiers, literals or reserved words must be separated by a space or tab or end-of-line,

no token is allowed to contain a space or a tab or end-of-line.

Help the students of Dr. C. Ompiler to write a program which reads lines of text an recognizes the FORCAL tokens in them.
输入解释
The input consists of several blocks of lines. Each block contains lines of text and is terminated by one empty line.
输出解释
The output consists of blocks corresponding to the blocks in the input. In the lines of each block there are successively stored the FORCAL tokens recognized by the program (just one token on each line). Each token must be written on the output line in exactly the same form as it appears in the input text. If the program encounters a string that is neither a FORCAL token, nor comment, nor space, tab, end-of-line, it is to write the string TOKEN ERROR on a new line and continues by processing the next block in the input. The program writes one empty line after each block of the output.
输入样例
A1:= A + (-B);

A123_A123 )
01.2 A B
C

:= A beGIn

aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
输出样例
A1
:=
A
+
(
-
B
)
;

A123_A123
)
01
TOKEN ERROR

:=
A
beGIn

TOKEN ERROR

该题目是Virtual Judge题目,来自 北京大学POJ

题目来源 Central Europe 1996

源链接: POJ-1372

最后修改于 2020-10-29T06:02:13+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
1000 10000