Tagged Questions
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 ...
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
501 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 ...
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
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
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
8answers
144 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 ...
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
3answers
884 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) ...
-3
votes
3answers
89 views
Why is it that when I have X(long) / (Y*Y*Y)(long) I get Error: Divide by Zero?
In my example X is already long and Y is a long also. I am not casting at then.
I really just want to divide by a number that is cubed. (using native libraries)
These numbers are extremely large. If ...