[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Why am I getting a divide-by-zero error?



PureBytes Links

Trading Reference Links

Divide by zero errors are caused by just that.

Look at the functions that are being called and
look at all the demoninators.

Then recode them.

(This is an example)

	If value2 = 0
	   value3 = 0
	else
	   value3 = value1/value2;

David