public class IntMod implements Field, Ordered { private int n, m; public IntMod(int n, int m) { if(m <= 0) throw new IllegalArgumentException("Not a positive divisor"); code example
Example: public class IntMod implements Field, Ordered { private int n, m; public IntMod(int n, int m) { if(m <= 0) throw new IllegalArgumentException("Not a positive divisor");
printf("Hello");