📅  最后修改于: 2022-03-11 14:52:32.363000             🧑  作者: Mango
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;
}