Here you can find the source of mod4(int a)
Parameter | Description |
---|---|
a | a parameter |
public static int mod4(int a)
//package com.java2s; public class Main { /**//from w ww . jav a 2s .com * Positive modulo 4 * @param a * @return */ public static int mod4(int a) { int c = a % 4; return c < 0 ? c + 4 : c; } }