public class NormalizeAngle { public Integer normalizeValueUsingModulo(Integer angle){ return angle%360; } public Integer normalizeValueUsingFloorMod(Integer integer){ int x = Math.floorMod(integer, 360); return x; } public static void main(String[] args){ } }