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.
次の値を持つ3つの変数があります...
put 10 into var1 put 7 into var2 put 2 into var3
最高値を取得する方法は?この例では、10 を返し、「10 が最大の数字」であることを表示したいと考えています。どうすればこれを達成できますか?
これは、どのプログラミング言語でも非常に標準的です。
put max(var1,var2,var3) into myMax