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.
我正在尝试定义我自己的 mymod 函数,其中 mod 通常是 3 mod 2 =1 函数。我不知道从哪里开始。有什么建议吗?
由于您不知道从哪里开始,这里有一些提示:
1)mymod应该是一个中缀函数。正确的语法是
mymod
infix mymod; fun x mymod y = ...
2) 您应该了解如何mymod使用-,*和来实现\。我建议您在编写函数之前手动尝试一些示例。
-
*
\
3) 由你来处理除以零的情况。