Divide by zero error, how do I fix this? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T08:57:24Zhttp://stackoverflow.com/feeds/question/160141http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this1Divide by zero error, how do I fix this?Scott2008-10-01T22:55:02Z2008-10-02T14:17:31Z
<p>Hi all,</p>
<p>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.</p>
<pre><code> private void SetProgressBar(string text, int position, int max)
{
try
{
int percent = (100 * position) / max; //when max is 0 bug hits
string txt = text + String.Format(". {0}%", percent);
SetStatus(txt);
}
catch
{
}
}
</code></pre>
<p>Many thanks</p>
http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160146#1601469Answer by Simon for Divide by zero error, how do I fix this?Simon2008-10-01T22:57:08Z2008-10-01T23:01:49Z<pre><code>int percent = 0
if (max != 0) percent = (100*position) / max
</code></pre>
http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160148#1601483Answer by palehorse for Divide by zero error, how do I fix this?palehorse2008-10-01T22:57:25Z2008-10-01T22:57:25Z<p>Check for zero.</p>
<pre><code>if ( max == 0 ) {
txt = "0%";
} else {
// Do the other stuff....
</code></pre>
http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160149#1601495Answer by Adam Wright for Divide by zero error, how do I fix this?Adam Wright2008-10-01T22:57:30Z2008-10-01T22:57:30Z<p>Well, that entirely depends on the behaviour you want. If the maximum value of your program bar is zero, is it full? Is it empty? This is a design choice, and when you've chosen, just test for max == 0 and deploy your answer.</p>
http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160150#1601501Answer by Swati for Divide by zero error, how do I fix this?Swati2008-10-01T22:57:53Z2008-10-01T22:57:53Z<ul>
<li>You can throw an exception.</li>
<li>You can do <code>int percent = ( max > 0 ) ? (100 * position) / max : 0;</code></li>
<li>You can choose to do nothing instead of assigning a value to percent.</li>
<li>many, many other things...</li>
</ul>
<p>Depends on what you want.</p>
http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160154#1601541Answer by Esteban Araya for Divide by zero error, how do I fix this?Esteban Araya2008-10-01T22:58:29Z2008-10-01T22:58:29Z<p>This is not a C# problem, it's a math problem. Division by zero is undefined. Have an if statement that checks whether max > 0 and only execute your division then.</p>
http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160156#1601560Answer by Marcin for Divide by zero error, how do I fix this?Marcin2008-10-01T22:59:15Z2008-10-01T22:59:15Z<p>Well, if max is zero, then there is no progress to be made. Try catching the exception where this is called. That is probably the place to decide whether there is a problem or if the progress bar should be set at zero or at 100%.</p>
http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160157#1601570Answer by Bob King for Divide by zero error, how do I fix this?Bob King2008-10-01T22:59:35Z2008-10-01T22:59:35Z<p>I guess the root question is: Does it make sense to even call this function where max is '0'? If yes, then I'd add special handling to it i.e.:</p>
<pre><code>if (max == 0)
{
//do special handling here
}
else
{
//do normal code here
}
</code></pre>
<p>If 0 doesn't make sense, I'd investigate where it's coming from.</p>
http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160158#1601580Answer by ckramer for Divide by zero error, how do I fix this?ckramer2008-10-01T22:59:43Z2008-10-01T22:59:43Z<p>You would need a guard clause which checks for max == 0. </p>
<pre><code>private void SetProgressBar(string text, int position, int max)
{
if(max == 0)
return;
int percent = (100 * position) / max; //when max is 0 bug hits
string txt = text + String.Format(". {0}%", percent);
SetStatus(txt);
}
</code></pre>
<p>You could also handle the Divide by Zero exception, as your sample showed, but it is generally more costly to handle exceptions then to set up checks for known bad values.</p>
http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160160#1601600Answer by Dre for Divide by zero error, how do I fix this?Dre2008-10-01T23:00:25Z2008-10-01T23:00:25Z<p>If you are using this for a download, you'll probably want to show 0% as I assume max would == 0 in this case when you don't KNOW the file size yet.</p>
<pre><code>int percent = 0;
if (max != 0)
...;
</code></pre>
<p>If you are using this for some other long task, I'd want to assume 100%</p>
<p>But also, since position can never be between 0 and -1, so you'll probably want to drop the 100 * </p>
http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160161#1601610Answer by ΤΖΩΤΖΙΟΥ for Divide by zero error, how do I fix this?ΤΖΩΤΖΙΟΥ2008-10-01T23:00:53Z2008-10-01T23:00:53Z<p>Convert your</p>
<pre><code>int percent = (100 * position) / max;
</code></pre>
<p>into</p>
<pre><code>int percent;
if (max != 0)
percent = (100 * position) / max;
else
percent = 100; // or whatever fits your needs
</code></pre>
http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160193#1601930Answer by Scott for Divide by zero error, how do I fix this?Scott2008-10-01T23:14:58Z2008-10-01T23:14:58Z<p>Wow, thanks!</p>