Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有三个具有以下值的变量...
put 10 into var1 put 7 into var2 put 2 into var3
如何获得最高价值?对于这个例子,我想返回 10 并显示“10 是最大的数字”。我怎样才能做到这一点?
这在任何编程语言中都是相当标准的。
put max(var1,var2,var3) into myMax