Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Latest commit

 

History

History
33 lines (27 loc) · 642 Bytes

index.md

File metadata and controls

33 lines (27 loc) · 642 Bytes

语言说明

见此

解释器说明

使用方式:命令行 格式luogu++ [参数] 文件位置 解释器会自动找到.lgpp源代码和.in栈初始化(可以没有),生成输出至.out

.in格式:

A data0 data1 ... datan
B data0 data1 ... datan
C data0 data1 ... datan

其中data0 ... datan默认按从栈底栈顶的顺序

.out中的data0 ... datan默认按从栈顶栈底顺序 例子:

D:/code/cat.in
|A 3 4 5

D:/code/cat.lgpp
|1 1
|TER

shell>luogu++ D:/code/cat

...a few seconds later...

D:/code/cat.out
|A 5 4 3

参数说明见此