Relative Content

Tag Archive for javamathoperation

Java division operation a/b where either a or b or both are negative

Divisor is negative, dividend is positive a = 17; b = -14; Question: What is the result of java operation a/b ?? Divisor is positive, dividend is negative a = -17; b = 14; Question: What is the result of java operation a/b ?? Both divisor and dividend are negative a = -17; b = […]