当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。
definition := cell "=" expression
expression := term | expression "+" term | expression "-" term
term := factor | term "*" factor | term "/" factor
factor := number | cell | "(" expression ")"
number := digit | number digit
digit := "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
cell := "R" digit digit "C" digit digit
R01C01=1 R01C02=2 R01C03=R01C01+R01C02 R02C01=(R03C02+1)*R01C03 R03C02=R02C01
R01C01 ok R01C02 ok R01C03 ok R02C01 circular R03C02 circular
时间上限 | 内存上限 |
1000 | 65536 |