ivan.txt
来自「C语言语法分析器」· 文本 代码 · 共 12 行
TXT
12 行
ivan()
a:int;
b:int;
c:int;
{
a=0;
b=1;
c=12;
if c>b and c>a then a=b;
while c>b do b=b+2;
a=(b+c)*a
}