Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

creating modulu function withou using % java

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;
	}	
 
PREVIOUS NEXT
Tagged: #creating #modulu #function #withou #java
ADD COMMENT
Topic
Name
3+5 =