Tagged Questions

For issues relating to handling or preventing divide by zero operations.

learn more… | top users | synonyms

25
votes
7answers
1k views

Is 1/0 a legal Java expression?

The following compiles fine in my Eclipse: final int j = 1/0; // compiles fine!!! // throws ArithmeticException: / by zero at run-time Java prevents many "dumb code" from even compiling in the ...
16
votes
18answers
3k views

Why is 0 divided by 0 an error?

I have come across this problem in a calculation I do in my code, where the divisor is 0 if the divident is 0 too. In my code I return 0 for that case. I am wondering, while division by zero is ...
15
votes
2answers
229 views

Why does this code divide by zero?

I have a small Haskell program, and am curious why a divide by zero exception gets thrown when I run it (GHC 7.0.3) import qualified Data.ByteString.Lazy as B import Codec.Utils convert :: ...
13
votes
2answers
459 views

A Double divided by zero is returning a Divide by Zero error

I am experiencing an unexpected behaviour and was hoping someone could help with some guidance as to what areas to focus an investigation on. I have two methods, one essentially performs a divide by ...
12
votes
3answers
1k views

Why doesn't Java throw an Exception when dividing by 0.0?

I have code to calculate the percentage difference between 2 numbers - (oldNum - newNum) / oldNum * 100; - where both of the numbers are doubles. I expected to have to add some sort of checking / ...
12
votes
7answers
502 views

try-catch problem

Hey guys, I am a java newbie, my question is about try-catch blocks on a simple division by zero example. You see the first line of try? If I cast any of those two variables to the double the program ...
7
votes
4answers
462 views

How to cause an intentional division by zero?

For testing reasons I would like to cause a division by zero in my C++ code. I wrote this code: int x = 9; cout << "int x=" << x; int y = 10/(x-9); y += 10; I see "int =9" printed on ...
7
votes
5answers
226 views

Can bad stuff happen when dividing 1/a very small float?

If I want to check that positive float A is less than the inverse square of another positive float B (in C99), could something go wrong if B is very small? I could imagine checking it like ...
6
votes
4answers
575 views

Inconsistency in divide-by-zero behavior between different value types

Please consider the following code and comments: Console.WriteLine(1 / 0); // will not compile, error: Division by constant zero int i = 0; Console.WriteLine(1 / i); // compiles, runs, throws: ...
5
votes
7answers
231 views

Divide by Zero Display Values

What is the best way (most intuitive to users) or best practice for displaying the results of a divide by 0 error when doing reporting? Within the report, I capture this error, however, when ...
4
votes
2answers
719 views

Problem with Sun Java KeyManagerFactory and null passwords

We are having a problem with the KeyManagerFactory in the Sun JRE 1.6. We are using code similar to the following to upload and use a certificate in p12 format: KeyStore keyStore = ...
3
votes
5answers
168 views

Is dividing by zero accompanied with a runtime error ever useful in C++?

According to C++ Standard (5/5) dividing by zero is undefined behavior. Now consider this code (lots of useless statements are there to prevent the compiler from optimizing code out): int main() { ...
3
votes
3answers
170 views

Check for zero or a denormalized number in c++

I currently have some code where I have to normalize a vector of doubles (divide each element by the sum). When debugging, I see sometimes that the elements in the vector are all 0.0. If I then take ...
3
votes
3answers
480 views

TSQL divide by zero encountered despite no columns containing 0

I've been trying to understand why I get a "divide by zero encountered" (Msg 8134) with my SQL query, but I must be missing something. I would like like to know the why for the specific case below, I ...
3
votes
1answer
501 views

Visual C++ / Weird behavior after enabling floating-point exceptions (compiler bug ?)

I am struggling to get a reliable way to catch floating points exceptions under Visual Studio (2005 or 2008). By default, under visual studio, floating point exceptions are not caught, and they are ...
3
votes
4answers
738 views

Why does this divide-by-zero error only occur in optimized code?

I just found a bug that, strangely, occurred only when optimization was turned on (g++ -O2). It was an Arithmetic exception in the following code, when interval was set to zero (from a command line ...
3
votes
10answers
795 views

Is there a C/C++ function to safely handle division by zero?

We have a situation we want to do a sort of weighted average of two values w1 & w2, based on how far two other values v1 & v2 are away from zero... for example: If v1 is zero, it doesn't get ...
3
votes
5answers
684 views

Division by zero: Undefined Behavior or Implementation Defined in C and/or C++?

Regarding division by zero, the standards say: C99 6.5.5p5 - The result of the / operator is the quotient from the division of the first operand by the second; the result of the % operator is the ...
3
votes
4answers
1k views

how to check if there is a division by zero in c

#include<stdio.h> void function(int); int main() { int x; printf("Enter x:"); scanf("%d", &x); function(x); return 0; } void function(int x) { float fx; fx=10/x; ...
3
votes
4answers
3k views

Can I force java to throw an error when dividing by zero with floating point numbers?

I wrote a simulator that has some collision detection code and does a good bit of math on each object when it detects collisions. If these two objects are at the exact same location or in some rare ...
2
votes
1answer
27 views

Divide Underflow

Why is a divide underflow only caused when the divisor is much smaller than the dividend, shouldn't it occur anytime the denominator is close enough to zero regardless of the size of the dividend?
2
votes
1answer
68 views

How to handle Integer Division By Zero exception using Boost.Test library?

I'm writing unit tests using Boost.Test against some old C math library. One of tested functions in known to raise Integer Division By Zero system exception for some specified input. Let's say it's ...
2
votes
3answers
122 views

How to perform loan equations in Java?

all. I'm trying to make a program that will allow the user to determine different aspects when considering a loan. The first equation is supposed to determine what the monthly payment would be given ...
2
votes
6answers
142 views

Can't Mod Zero?

Why is X % 0 an invalid expression? I always thought X % 0 should equal X. Since you can't divide by zero, shouldn't the answer naturally be the remainder, X (everything left over)?
2
votes
8answers
145 views

Why dividing an integer by zero and type casting it to float results infinity?

I had already searched through different questions on this topic but not get a clear idea. Check this code: class Test{ public static void main(String[] s){ int a=5; float ...
2
votes
1answer
115 views

Handle “Divide by zero error encountered error”

SELECT ((CASE WHEN (qid2.AgeBelow_16 - qid1.AgeBelow_16)= 0 THEN 1 ELSE (qid2.AgeBelow_16- qid1.AgeBelow_16) END )/ (CASE WHEN [qid1].AgeBelow_16= 0 THEN 1 ELSE [qid1].AgeBelow_16 END))*100 AS ...
2
votes
3answers
1k views

How to avoid DIVIDE BY ZERO error in an SQL query

SELECT YEAR, period, round((1- sum(rej_qty) / sum(recd_qty))*100, 0) FROM TAB_A WHERE sid = '200' AND sdid IN ('4750') AND ( ( YEAR ='2011' AND period ...
2
votes
9answers
557 views

How different programming languages handle division by 0?

Perhaps this is the wrong sort of question to ask here but I am curious. I know that many languages will simply explode and fail when asked to divide by 0, but are there any programming languages that ...
2
votes
5answers
887 views

How should I tackle ARCTAN (and prevent deviding by zero) without the convenience of ARCTAN2(n,m) being available?

I try to determine the angle from a point (n,m) to (0,0). Without arctan2 being available, I'm running into the problem that m can be 0, which leads to a possible division by zero. What would be an ...
2
votes
10answers
4k views

Divide by zero error, how do I fix this?

C# novice here, when the int 'max' below is 0 I get a divide by zero error, I can see why this happens but how should I handle this when max is 0? position is also an int. private void ...
1
vote
5answers
84 views

Calculating percentage changes without dividing by zero

I have the following the PHP that I am using to calculate percentage decreases or increases: function CalculatePercentageIncrease( $nLastMonthPeriod, $nCurrentPeriod ) { if ( !is_numeric( ...
1
vote
1answer
70 views

how to handle divide by zero error in ML

I am new to ML. I need to define a function taking an conditional expression as argument, the problem is if the expression is invalid like "10 div 0 = 0". How can I handle this? For example, the ...
1
vote
4answers
62 views

Best way to prevent/handle divide by 0 in javascript

What is the best way to prevent divide by 0 in javascript that is accepting user inputs. If there is no particular way to achieve this what would be the best way to handle such a situation so as to ...
1
vote
8answers
162 views

C# - Is it possible to make divide-by-zeros return a number, instead of throwing an exception?

I have an expression that includes divisions, for which some of the denominators are sometimes zero. However, in those cases I would like that division to result in 1, instead of throwing an ...
1
vote
1answer
200 views

How to handle a division by zero in Linq

In the following linq query I have a division by zero exception wich I can't seem to code around. It occurs when the Sum of fldDevider returns 0. Dim lstToReturn As List(Of MonthData) lstToReturn = ...
1
vote
2answers
181 views

remainder of integer division by 0

Consider integer division a = bq + r where a, b, q, r are respectively: dividend, divisor, quotient, and remainder. Particularly when b = 0, there is no unique b that satisfies the equation for a ...
1
vote
3answers
149 views

Why does division(?) yield this number?

Rephrasing question : The following code (Not C++ - written in an in-house scripting language) if(A*B != 0.0) { D = (C/(A*B))*100.0; } else { D = 0.0; } yields a value of ...
1
vote
2answers
340 views

PostgreSQL division by zero when ordering

i need to execute this query in postgres but i couldn't get rid of this error ERROR: division by zero SQL state: 22012 here is the query : select id,rates_sum,rates_count from tbl_node order ...
1
vote
4answers
532 views

Why is divide by zero a problem?

//////// UPDATE: Christ! I had another look at the program, to see if I was being silly. And indeed I am. The error was in fact not a divide by zero error but 'ArrayIndexOutOfBoundsException:0' This ...
1
vote
1answer
114 views

How to guard against dividing by zero when doing symbolic regression? ECJ

I'm writing a genetic program to perform symbolic regression on a formula. I'm using ECJ. See tutorial 4 of the samples that come with ECJ for an example of what this is and the base that I started ...
1
vote
2answers
862 views

VS C++ throwing divide by zero exception after a specific check

In the following C++ code, it should be impossible for ain integer division by zero to occur: // gradedUnits and totalGrades are both of type int if (gradedUnits == 0) { return 0; } else { ...
1
vote
3answers
885 views

divide by zero error

here is the code (java): class prime { public static boolean prime (int a, int b) { if (a == 0) { return false; } else if ((a%(b-1) == 0) ...
1
vote
1answer
703 views

Intermittent “Division by zero” error in classic ASP pages. HELP!

This is a strange one. A web application which runs fine on Windows Server 2000, experiences intermittent errors on Windows Server 2003 R2. By intermittent, I mean myself and 2 testers can find the ...
1
vote
6answers
586 views

Having a divide by zero problem

Hes my code and I can't figure out where I'm getting the divide by zero problem. mreviewApp.cpp const int SIZE = 80; const char DELIMIT = '|'; void parseLine(const char line[], string& title, ...
1
vote
6answers
2k views

Can I ignore a SIGFPE resulting from division by zero?

I have a program which deliberately performs a divide by zero (and stores the result in a volatile variable) in order to halt in certain circumstances. However, I'd like to be able to disable this ...
0
votes
2answers
76 views

How is this dividing by zero?

Really, really basic block in Ruby: list = (1..125).to_a list.each do |x| print x if 125 % x = 0 end Gives me: ZeroDivisionError: divided by 0 from (irb):3:in `%' from (irb):3 from (irb):2:in ...
0
votes
1answer
79 views

NullIf() to Prevent Divide by Zero

In my query, when calculating the average, I encounter a divide by zero error. I am attempting to resolve this by using Nullif, but I don't think my syntax is correct as Coldfusion throws an error ...
0
votes
0answers
50 views

Handling undefined, NaN or Inf Values in glsl. Thinking of matherrors

I still didn't get rid of some annoying bugs in my glsl shader (GL 2.0)... I searched for a solution of this problem for over 3 weeks now, but I didn't get any. There are many examples and ...
0
votes
0answers
197 views

How do I avoid the “#DIV/0!” error in Google docs spreadsheet?

I have a column with average(K23:M23) that starts out with #DIV/0! when the K23 through M23 cells are empty. Preferably I'd like to only do the average of cells that contain non-zero, non-blank ...
0
votes
5answers
184 views

PHP Division by Zero Problem [closed]

I have the following PHP code to display my tag cloud. It seems if I don't have at least two tags that are the same, I get a warning message saying Warnng: Division by zero (shown below). Could some ...

1 2