是否可以在命令中列出所有变量(打印符号表)bc
?
例如
$ bc -q
x=3
y=4
z=x+y
/* a command for listing all variables defined */
/* and it will show:
x 3
y 4
z 7
or maybe in other format */
如果说“所有定义的变量”是模棱两可的,那么“所有非零变量”也应该是可以接受的。
是否可以在命令中列出所有变量(打印符号表)bc
?
例如
$ bc -q
x=3
y=4
z=x+y
/* a command for listing all variables defined */
/* and it will show:
x 3
y 4
z 7
or maybe in other format */
如果说“所有定义的变量”是模棱两可的,那么“所有非零变量”也应该是可以接受的。