📌  相关文章
📜  在不使用 % java 代码示例的情况下创建模函数

📅  最后修改于: 2022-03-11 14:52:32.363000             🧑  作者: Mango

代码示例1
public static int mod(int x1, int x2) {
        // this is a function only.
          // don't forget the class!!!
        int d = x1 / x2  - 1;
        int result = x1 - (d * x2);

        return result;
    }